Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saijo-shota-biz/react-simplified-ui
storybook π
https://github.com/saijo-shota-biz/react-simplified-ui
library react storybook wip
Last synced: 12 days ago
JSON representation
storybook π
- Host: GitHub
- URL: https://github.com/saijo-shota-biz/react-simplified-ui
- Owner: saijo-shota-biz
- License: mit
- Created: 2020-04-10T18:04:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-23T02:18:14.000Z (10 months ago)
- Last Synced: 2024-10-19T05:16:01.641Z (4 months ago)
- Topics: library, react, storybook, wip
- Language: TypeScript
- Homepage: https://saijo-shota-biz.github.io/react-simplified-ui/
- Size: 2.48 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-simplified-ui
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
## γ€γ³γΉγγΌγ«
```bash
$ npm install react-simplified-ui
```## δ½ΏγζΉ
`App.tsx`
```tsx
import React from "react";
import "./App.scss";
import { Button } from "react-simplified-ui";function App() {
return (
{
console.log("clicked");
}}
>
Test Button
);
}export default App;
````App.scss`
```tsx
@import "~react-simplified-ui/build/all";
```### γ«γΉγΏγγ€γΊ
`_variables.scss`
```scss
$base-color: #ffffff;
$main-color-dark: #00796b;
$main-color: #009688;
$main-color-light: #b2dfdb;
$accent-color: #ff4081;
````App.scss`
```scss
@import "./variables";
@import "~react-simplified-ui/build/all";
```## License
This software is released under the MIT License, see LICENSE.txt.