Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
524 Bytes
import * as React from 'react';
import { InteractiveLink } from '../ui/InteractiveLink';
import { P } from '../ui/Paragraph';
export const ExampleComponent: React.VFC = () => (
<div>
<P>
This is an example page. Refresh the page or copy/paste the url to test
out the redirect functionality (this same page should load after the
redirect).
</P>
<InteractiveLink to="/example/two-deep?field1=foo&field2=bar#boom!">
Example two deep with query and hash
</InteractiveLink>
</div>
);