Primer React Prototype

Getting started

Installation

This is an experimental package and not intended for public usage.

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>
)
}