Galaxy UI is a collection of React web components that help you build web applications faster.
UI Library for the galaxy project, which is a collection of React web components.
npm install @galaxy_ui/ui
or
npm i @galaxy_ui/ui
OR
yarn add @galaxy_ui/ui
Basic component usage syntax:
import React from 'react';
import { Button } from '@galaxy/ui';
const App = () => <Button>Click me</Button>;
export default App;