The FormGroup is a component that displays a label and an error message for a form input.
npm install @igloo-ui/form-groupThe FormGroup is a component that displays a label and an error message for a form input.
To install @igloo-ui/form-group in your project, you will need to run the following command using npm:
``bash`
npm install @igloo-ui/form-group
If you prefer Yarn, use the following command instead:
`bash`
yarn add @igloo-ui/form-group
Then to use the component in your code just import it!
`jsx
import FormGroup from '@igloo-ui/form-group';
import Input from '@igloo-ui/input';
``