-
What is `Charkra`?Web Programming/Front End 2021. 10. 25. 17:16
Chakra is
ReactJS
를 위한 UI 라이브러리이다.npm i @chakra-ui/react @emotion/react@^11 @emotion/styled@^11 framer-motion@^4 # or yarn add @chakra-ui/react @emotion/react@^11 @emotion/styled@^11 framer-motion@^4
import * as React from "react" // 1. import `ChakraProvider` component import { ChakraProvider } from "@chakra-ui/react" function App() { // 2. Use at the root of your app return ( <ChakraProvider> <App /> </ChakraProvider> ) }
Reference
'Web Programming > Front End' 카테고리의 다른 글
form tag using vanilaJS (0) 2021.10.25 Gatsby Cloud setup (0) 2021.10.25