Chakra UI

0
11Кб

What is Chakra UI?

Have you ever struggled with whether to focus more on the back-end or front-end of your project? Well believe me, both are equally important.

I started using Chakra UI because I wanted to focus on my back-end code more than being stuck on "How to center a div element?".

Chakra UI is extremely simple to use, especially when you are familiar with how to use ReactJs components.

How to Get Started and Install Chakra UI

Inside your respective directory, install ChakraUI using Yarn or NPM

yarn add @chakra-ui/react @emotion/react@^11 @emotion/styled@^11 framer-motion@^4

npm i @chakra-ui/react @emotion/react@^11 @emotion/styled@^11 framer-motion@^4

For React:

For ChakraUI to get initialised you first need to add <ChakraProvider> in your index.js file.

import React from "react"

// 1. import `ChakraProvider` component
import { ChakraProvider } from "@chakra-ui/react"

function App({ Component }) {
 // 2. Use at the root of your app
 return (
   <ChakraProvider>
     <Component />
   </ChakraProvider>
 )
}

For Next.js

Go to pages/_app.js and add the following lines of code:

import { ChakraProvider } from "@chakra-ui/react"
function MyApp({ Component, pageProps }) {
 return (
   <ChakraProvider>
     <Component {...pageProps} />
   </ChakraProvider>
 )
}
export default MyApp
Поиск
Категории
Больше
Business
How Does Intrapreneurship Differ from Entrepreneurship?
In today’s fast-paced and innovation-driven world, both entrepreneurship and...
От Dacey Rankins 2025-04-17 12:47:02 0 9Кб
Finance
The Best Finance Biographies: Stories of Vision, Risk, and Wealth
The Best Finance Biographies: Stories of Vision, Risk, and Wealth The world of finance is often...
От Leonard Pokrovski 2025-10-07 21:59:32 0 6Кб
Life Issues
Forrest Gump. (1994)
The presidencies of Kennedy and Johnson, the Vietnam War, the Watergate scandal and other...
От Leonard Pokrovski 2022-11-09 20:02:22 0 28Кб
Subcultures
Exploring Society's Subcultures: Unveiling the Tapestry of Diversity
Society is a kaleidoscope of human experiences, where individuals come together, each bringing...
От Dacey Rankins 2024-06-13 16:22:46 0 18Кб
Mental Health
Autism Spectrum: Features and Characteristics
Pre-diagnosisFor many autistic individuals, characteristics usually first appear during infancy...
От Kelsey Rodriguez 2023-02-14 13:30:27 0 12Кб

BigMoney.VIP Powered by Hosting Pokrov