You can live test our components using Storybook.
https://confident-kalam-43f67a.netlify.app
- TextInput
- PasswordInput
- DateInput
For example, you can use the following code to render a TextInput
component.`:
import React from 'react';
import { TextInput } from 'matter-react-ui';
const App = () => {
return (
<TextInput
placeholder='Enter your name'
size='md'
/>
);
export default App;
}