To begin, the most straightforward approach is to utilize one of the provided templates. These templates come pre-configured with the necessary settings, such as CssBaseline and other fundamental components.
If you're new to GitHub and need guidance on initiating a project using a template, you can access comprehensive instructions on how to get started on this example.
Follow Vite getting started guide to create new Vite application:
yarn create vite
Install dependencies:
yarn add @bolio-ui/core
Add styles imports, BolioUIProvider and CssBaseline to src/App.tsx:
import { BolioUIProvider, CssBaseline, Text } from '@bolio-ui/core'
export default function App() {
return (
<BolioUIProvider>
<CssBaseline />
<Text p>Your app page here</Text>
</BolioUIProvider>
)
}
Ready to go! Start the development server:
npm run dev
Previous
Example with Next.js
Next
Example with Remix