mirror of
https://github.com/react95-io/React95.git
synced 2026-01-15 01:18:16 -05:00
* Move each mdx file to respective component folder (colocation ftw) * Fix some style prop-types in order to fix docz build * Move docz to the root folder instead of having a separated project folder
24 lines
582 B
Plaintext
24 lines
582 B
Plaintext
---
|
|
name: Installation
|
|
menu: Getting Started
|
|
route: /installation
|
|
---
|
|
|
|
## Installation
|
|
|
|
React95 is available as an [npm package](https://www.npmjs.com/package/react95).
|
|
|
|
## npm
|
|
|
|
To install and save your `package.json` dependencies, run:
|
|
|
|
```sh
|
|
// yarn
|
|
yarn react95 styled-components
|
|
|
|
// npm
|
|
npm i react95 styled-components
|
|
```
|
|
|
|
In order to have `react95` working properly, you'll also need [`styled-components`](https://github.com/styled-components/styled-components), this way you can use custom themes and get the best of the library 🙂 _(but that might change in the future)_.
|