Skip to content

Commit

Permalink
[pigment-css][docs] Fix import on the README (#41411)
Browse files Browse the repository at this point in the history
  • Loading branch information
danilo-leal committed Mar 8, 2024
1 parent b5f6d22 commit 655eff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/pigment-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Finally, import the stylesheet in the root `layout.tsx` file:

```diff
import type { Metadata } from 'next';
+import '@mui/zero-runtime/styles.css';
+import '@pigment-css/react/styles.css';

export const metadata: Metadata = {
title: 'Create Next App',
Expand Down Expand Up @@ -115,7 +115,7 @@ Finally, import the stylesheet in the root `main.tsx` file:
```diff
import * as React from 'react';
import { createRoot } from 'react-dom/client';
+import '@mui/zero-runtime/styles.css';
+import '@pigment-css/react/styles.css';
import App from './App';

const rootElement = document.getElementById('root');
Expand Down

0 comments on commit 655eff4

Please sign in to comment.