rsnext/examples/basic-css/app/page.tsx
Arian 832cbb3330
chore: migrate basic-css example from page router to app router (#62980)
### Adding or Updating Examples

Migrate the basic-css example from page router to app router. If it
needs further updates, Please let me know

Happy to contribute

---------

Co-authored-by: Steven <steven@ceriously.com>
2024-03-07 15:44:13 +00:00

11 lines
177 B
TypeScript

import styles from "../styles.module.css";
const Home = () => {
return (
<div className={styles.hello}>
<p>Hello World</p>
</div>
);
};
export default Home;