--- name: Usage menu: Getting Started route: /usage --- ## Usage Apply style reset, wrap your app content with ThemeProvider with theme of your choice... and you are ready to go! 🚀 ```jsx import React from 'react'; import { createGlobalStyle, ThemeProvider } from 'styled-components'; import { reset, themes, List, ListItem, Divider } from 'react95'; const ResetStyles = createGlobalStyle` ${reset} `; const App = () => (
🎤 Sing 💃🏻 Dance 😴 Sleep
); export default App; ```