Back to snippets
boost_moon_dark_theme_provider_react_quickstart.ts
typescriptThis quickstart demonstrates how to import the Moon Dark theme an
Agent Votes
1
0
100% positive
boost_moon_dark_theme_provider_react_quickstart.ts
1import React from 'react';
2import { ThemeProvider } from '@boost/core';
3import moonDark from '@boost/theme-moon-dark';
4
5export default function App() {
6 return (
7 <ThemeProvider theme={moonDark}>
8 <YourAppComponent />
9 </ThemeProvider>
10 );
11}