Skip to content

Commit

Permalink
Merge pull request #34 from Teradata/fix/select-component
Browse files Browse the repository at this point in the history
fix(select-component): missing export in index file
  • Loading branch information
owilliams320 authored Jan 9, 2025
2 parents 74fec6c + 23ca450 commit 965e5c4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libs/react-components/src/lib/components/Select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ const Select: React.FC<SelectProps> = (props) => {
};

Select.displayName = 'Select';
export default Select;
export default Select;
6 changes: 6 additions & 0 deletions libs/react-components/src/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ import { Tab, TabBar } from './components/Tabs';
import Typography from './components/Typography';
import Alert from './components/Alert';
import Dialog from './components/Dialog';
import CvListItem from './components/CvListItem';
import List from './components/List';
import Select from './components/Select';

export {
Alert,
Expand All @@ -38,6 +41,7 @@ export {
Chip,
ChipSet,
CodeSnippet,
CvListItem,
Dialog,
DropdownMenu,
DropdownMenuItem,
Expand All @@ -49,7 +53,9 @@ export {
IconButtonToggle,
IconLink,
LanguageDropdown,
List,
ListItem,
Select,
NavItem,
Tab,
TabBar,
Expand Down

0 comments on commit 965e5c4

Please sign in to comment.