20230829-Chakra-Ui

Contents

pnpm add @chakra-ui/react @chakra-ui/next-js @emotion/react @emotion/styled framer-motion

// pages/_app.tsx
import type { AppProps } from 'next/app'
import { ChakraProvider } from '@chakra-ui/react'

export default function App({ Component, pageProps }: AppProps) {
return (
		<ChakraProvider>
			<Component {...pageProps} />
		</ChakraProvider>
	)
}

Ref

0%