Modern and minimalist React UI library, originating from Vercel's design.
NOTE: This is a COMMUNITY PROJECT, not associated with Vercel.
-
run
yarn add @geist-ui/core
ornpm i @geist-ui/core
install it. -
import into project:
import { GeistProvider, CssBaseline } from '@geist-ui/core'
const Application = () => (
<GeistProvider>
<CssBaseline /> // ---> Normalize styles
<AppComponent /> // ---> Your App Component
</GeistProvider>
)