# React and Next - Complete guide
Next.js docs Next beta documentation
To create and Nextjs app:
npx create-next-app
1
To Use prettier on visual studio code, go to settings and search for format and choose the default formatter to be Prettier
shift + alt + F - to use prettier on visual studio code
First index.js changing on the project:
import styles from '../styles/Home.module.css'
export default function Home() {
return (
<div className={styles.container}>
<h1>Hello Next World</h1>
</div>
)
}
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9