react-minecraft-ui
A Minecraft Components Library for React.
npm install react-minecraft-ui
Usage/Examples
import { Typography, Button } from 'react-minecraft-ui';
import 'react-minecraft-ui/dist/index.css';
function App() {
return (
<Typography variant="body" color="black">
This is a test button
</Typography>
<Button label="Click me!" onClick(() => console.log("Hello world!")) />
);
}
Run Locally
Clone the project
git clone https://github.com/osaxely/react-minecraft-ui.git
Go to the project directory
cd react-minecraft-ui
Install dependencies
npm install
Start the server
npm run storybook
Authors