mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
832cbb3330
### 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>
12 lines
177 B
TypeScript
12 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;
|