diff --git a/packages/grafana-ui/src/components/Forms/index.ts b/packages/grafana-ui/src/components/Forms/index.ts index 92fe11cdc2c..66f0c0a4b90 100644 --- a/packages/grafana-ui/src/components/Forms/index.ts +++ b/packages/grafana-ui/src/components/Forms/index.ts @@ -1,3 +1,4 @@ +import { Controller as InputControl } from 'react-hook-form'; import { getFormStyles } from './getFormStyles'; import { Label } from './Label'; import { Input } from './Input/Input'; @@ -8,7 +9,7 @@ import { Form } from './Form'; import { Field } from './Field'; import { Button, LinkButton } from './Button'; import { Switch } from './Switch'; -import { Controller as InputControl } from 'react-hook-form'; +import { TextArea } from './TextArea/TextArea'; const Forms = { RadioButtonGroup, @@ -24,6 +25,7 @@ const Forms = { ButtonSelect, InputControl, AsyncSelect, + TextArea, }; export default Forms;