Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
243 Bytes
import React from "react";
import "./OptFormStyles.css";
function OptFormWrapper({ children, ...restProps }) {
return (
<div className="optform-wrapper" {...restProps}>
{children}
</div>
);
}
export default OptFormWrapper;