A React components library with Win95 UI
React95
React95 is a component library inspired on the Windows 95 UI design.
Installation
React95 will be available via either npm and yarn.
npm install @react95/core
# or
yarn add @react95/core
Warning: React95 isn't production ready yet, use it at your own risk!
Usage
After installation, you can use any React95 component in your React application:
import { Button } from '@react95/core';
// or
import Button from '@react95/core/Button';
// ...
render() {
return (
<div>
<Button>Click me!</Button>
</div>
);
}