Skip to content

Commit

Permalink
fix(components): export textarea component (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuagraber authored Oct 16, 2024
1 parent f32dbb9 commit b2673c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export { Input } from './Input';
export { InputCheckbox } from './InputCheckbox';
export { InputPassword } from './InputPassword';
export { InputText } from './InputText';
export { InputTextArea } from './InputTextArea';
export { Header } from './Header';
export { Nav } from './Nav';
export { QuickSearchForm } from './QuickSearchForm';
Expand Down
5 changes: 4 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ export * from './components/Footer/types';
export * from './components/Form/types';
export * from './components/FormV2/types';
export * from './components/Header/types';
export * from './components/Input/types';
// export * from './components/Input/types';
export * from './components/InputCheckbox/types';
export * from './components/InputText/types';
export * from './components/InputTextArea/types';
export * from './components/Nav/types';
export * from './components/TileIcon/types';

Expand Down

0 comments on commit b2673c9

Please sign in to comment.