@wcp/wario-ux-shared
v9.0.1
Published
Shared UX elements across WARIO
Readme
wario-ux-shared
Shared utilities, components, and styles for the Wario UX ecosystem.
Features
- Reusable React components
- Shared utility functions
- Common styles and themes
Installation
Use your package manager of choice to install:
npm install @wcp/wario-ux-shared
# or
yarn add @wario/wario-ux-sharedUsage
Import and use the shared components, utilities, or styles in your project:
import { Button, ThemeProvider } from '@wcp/wario-ux-shared';
import { formatDate } from '@wcp/wario-ux-shared';
const App = () => (
<ThemeProvider>
<Button onClick={() => alert(formatDate(new Date()))}>Click Me</Button>
</ThemeProvider>
);Contributing
- Fork the repository.
- Create a new branch.
- Make your changes and commit them.
- Submit a pull request.
License
This project is licensed under the GNU General Public License v3.0.
