Skip to content

Usage

Learn the basics of using Joy UI components in two quick steps.

Getting started

Set up the CssVarsProvider component

Go to your App.js file and replace it with the code snippet below.

You should see the text Hello from Joy being rendered on your browser.

import { CssVarsProvider } from '@mui/joy/styles';

function App() {
  return <CssVarsProvider>Hello from Joy</CssVarsProvider>;
}

export default App;

Render your first component

To render any Joy UI component, make sure you place them inside the CssVarProvider element.

import { CssVarsProvider } from '@mui/joy/styles';
+ import Button from '@mui/joy/Button';

function App() {
  return (
    <CssVarsProvider>
+     <Button>Joy UI</Button>
    </CssVarsProvider>
  );
}

export default App;

It's that fast to have your first app with Joy UI going!