Mila components is a humble library of reusable components, based on React framework, developed as a final master thesis project.
You can install the library right now via npm:
npm i mila-components
import { Button, Heading, TextInput } from "mila-components";
const Example = () => (
<>
<Heading>Mila components</Heading>
<TextInput label="Enter your name" placeholder="John Doe" />
<Button type="submit" onClick={() => alert("Submitted!")}>
Submit
</Button>
</>
);
Learn everything about Mila design foundations and components in the official documentation site.