Installation

Shoto UI is available as an npm package

npm

npm install shoto-ui

Usage

Shoto UI works in isolation. They are self-supporting. You don't need to install any other libraries to work with Shoto UI.

Quick start

J
import React from "react";
import ReactDOM from "react-dom";
import { Avatar } from "shoto-ui";

function App() {
	return (
		<Avatar alt="John Doe" src="https://via.placeholder.com/150" />
	);
}

ReactDOM.render(<App />, document.querySelector('#app'));