Package Exports
- @real-system/input
- @real-system/input/lib/index.js
- @real-system/input/lib/index.mjs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@real-system/input) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@real-system/input
Real System's Input components.
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/inputCode Example
import { RealSystemProvider } from '@real-system/styled-library';
import { Input } from '@real-system/core/input';
const MyComponent = () => {
return (
<RealSystemProvider>
<Input>Body text...</Input>
</RealSystemProvider>
);
};