design-system-lib-example
v1.0.8
Published
A React-based repository showcasing a design system skeleton with TypeScript integration and Rollup for module bundling.
Downloads
3
Readme
A React-based repository showcasing a design system skeleton with TypeScript integration and Rollup for module bundling.
Installing the Library:
yarn add design-system-lib-example
Importing the Component and Usage
import { TextField } from "design-system-lib-example";
const App = () => {
return (
<>
<TextField label="Teste" value={"123"} />
<h1>Hello, world</h1>
</>
);
};
export default App;