Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import { Helmet } from '@modern-js/runtime/head';
- import './index.css';
- import { Link } from '@modern-js/runtime/router';
- const Index = () => (
- <div className="container-box">
- <Helmet>
- <link
- rel="icon"
- type="image/x-icon"
- href="https://lf3-static.bytednsdoc.com/obj/eden-cn/uhbfnupenuhf/favicon.ico"
- />
- </Helmet>
- <main>
- <Link to={'/table'}>Load table route</Link>
- <div>Initial page load from src/routes/pages.tsx</div>
- </main>
- </div>
- );
- export default Index;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement