Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
281 Bytes
// @flow
import * as React from "react";
type Props = {|
title: string,
children: React.Node,
|};
type State = {||};
class Tab extends React.PureComponent<Props, State> {
render(): React.Node {
return this.props.children;
}
}
export default Tab;