Install primer-react-prototype with npm or yarn:
npm install primer-react-prototype
yarn add primer-react-prototype
Add ThemeProvider to the root of your application:
import React from "react"import { ThemeProvider } from "primer-react-protoype"function App() {return (<ThemeProvider><div>...</div></ThemeProvider>)}