@gojek/theme-xandar
v0.3.0
Published
an improved default theme
Downloads
11
Readme
Asphalt Web Xandar theme
An improved Asphalt Web's default v1 theme
Installation
// npm
$ npm install @gojek/theme-xandar
// yarn
$ yarn add @gojek/theme-xandar
Basic usage with <ThemeProvider>
import ThemeProvider from "@asphalt-react/theme-provider";
import { xandar } from "@gojek/theme-xandar";
export const App = () => {
return (
<ThemeProvider theme={xandar}>
<p>enjoy themed app</p>
</ThemeProvider>
);
};