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