Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
import * as React from 'react';
class Privacy extends React.Component<{}> {
componentDidMount() {
return (window.location.href =
'https://help.github.com/en/github/site-policy/github-privacy-statement');
}
render() {
return null;
}
}
export default Privacy;