A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.
npm install react-ui89A collection of components that mimic a common style of user interfaces from the late 80s and early 90s.
```
npm install react-ui89
To get started, import the CSS file and place a Ui89Scene component as the
root element of your layout.
Then, add any other react-ui89 components as needed to create your desired UI.
`jsx
import 'react-ui89/dist/esm/index.css'
import {
Ui89Scene,
Ui89Card,
Ui89SpaceVertical,
Ui89Button,
Ui89TitleBox,
} from 'react-ui89'
export default function Page() {
return (
Welcome to the past.
Do you accept?
)
}
`
This project uses storybook. Storybook is an open-source tool for building
and organizing UI components in isolation.
``
npm run storybook
Storybook is also used for development.
```
npm run storybook
The easiest way to contribute is by starring this project on GitHub!
https://github.com/daniel-araujo/react-ui89
If you've found a bug, would like to suggest a feature or need some help, feel
free to create an issue on GitHub:
https://github.com/daniel-araujo/react-ui89/issues