Web Programming/Front End

What is `Charkra`?

아기 요다 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