Ledesma LIB contains foundational React UI components for shipping new features faster.
Ledesma LIB is available as an npm package.
npm:
npm install @faculedesma/ledesma-lib
yarn:
yarn add @faculedesma/ledesma-lib
Note:
Use @latest
for the latest stable release.
Here is an example of a basic app using Ledesma LIB's Button
component:
import * as React from 'react';
import { Button } from '@faculedesma/ledesma-lib';
function App() {
return <Button type="outline">Hello World</Button>;
}
You can check the documentation by cloning this project and running storybook on your local machine.
This project is licensed under the terms of the ISC license.