@real-system/input
v0.0.65
Published
Real System input component
Downloads
22
Maintainers
Readme
Installation
# install peer dependencies
# npm
$ npm install @real-system/styled-library @real-system/elements-primitive @real-system/utils-library react react-dom
# yarn
$ yarn add @real-system/styled-library @real-system/elements-primitive @real-system/utils-library react react-dom
# install input
# npm
$ npm install @real-system/input
# yarn
$ yarn add @real-system/input
Code Example
import { RealSystemProvider } from '@real-system/styled-library';
import { Input } from '@real-system/core/input';
const MyComponent = () => {
return (
<RealSystemProvider>
<Input>Body text...</Input>
</RealSystemProvider>
);
};