home · Posts · Archive · Tags

20230829-chakra-ui

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

👈Go Back

@alanhc