> For the complete documentation index, see [llms.txt](https://front-of-house.gitbook.io/svbstrate/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://front-of-house.gitbook.io/svbstrate/react.md).

# React

```javascript
import { create, Provider, Box } from '@svbstrate/react'

const svbstrate = create({
    ...theme,
})

function App() {
    return (
        <Provider svbstrate={svbstrate}>
            <Box color='primary' p={[20, 40, 60]}>Hello world</Box>
        </Provider>
    )
}
```
