Skip to content

Commit

Permalink
docs: add indents
Browse files Browse the repository at this point in the history
  • Loading branch information
vostrik authored Apr 4, 2024
1 parent 7f4f03c commit d282bcf
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions examples/quick-start/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@

4. Define initial rendering in main.tsx:

```typescript
import React from 'react'
import ReactDOM from 'react-dom'
import App from './App.tsx'
import './index.css'
const container = document.getElementById('root')!
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
container
)
```
```typescript
import React from 'react'
import ReactDOM from 'react-dom'
import App from './App.tsx'
import './index.css'
const container = document.getElementById('root')!
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
container
)
```

5. Wrap your root layout component (for ex.: App.tsx) by the `ConfigProvider`, add `GlobalStyles` and `Notification` service:

Expand Down

0 comments on commit d282bcf

Please sign in to comment.