@maxhub/max-ui
v0.1.12
Published
MaxUI
Readme
MaxUI
Установка
npm install @maxhub/max-uiyarn add @maxhub/max-uipnpm add @maxhub/max-uiБыстрый старт
import '@maxhub/max-ui/dist/styles.css';
import { MaxUI, Panel, Button } from "@maxhub/max-ui";
const App = () => {
return (
<MaxUI>
<Panel centeredX centeredY>
<Button>
Hello world!
</Button>
</Panel>
</MaxUI>
)
}