Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
284 Bytes
// @flow
import * as React from "react";
type Props = {|
+children?: React.Node,
|};
function PageOptions({ children }: Props): React.Node {
return <div className="page-options d-flex">{children}</div>;
}
PageOptions.displayName = "Page.Options";
export default PageOptions;