Skip to content

Commit

Permalink
Merge pull request #25 from nebula-aac/fix/update-exports
Browse files Browse the repository at this point in the history
[components] Added missing exports, and cleaned up exports
  • Loading branch information
nebula-aac authored Aug 25, 2023
2 parents 8b31ba3 + 0b423fa commit 02b9027
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions packages/components/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
import { AppBar } from './appbar';
import { Avatar } from './avatar';
import { BaseButton } from './button';
import { Box } from './box';
import { Chip } from './chip';
import { Dialog } from './dialog';
import { Divider } from './divider';
import { IconButton } from './iconbutton';
import { Paper } from './paper';
import { Stack } from './stack';
import { Tab } from './tab';
import { Tabs } from './tabs';
import { Toolbar } from './toolbar';
import { Tooltip } from './tooltip';
import { Typography } from './typography';

export { AppBar, Avatar, BaseButton, Box, Chip, Dialog, Divider, IconButton, Paper, Stack, Tab, Tabs, Toolbar, Tooltip, Typography };
export { AppBar } from './appbar';
export { Avatar } from './avatar';
export { BaseButton } from './button';
export { Box } from './box';
export { Chip } from './chip';
export { Dialog } from './dialog';
export { DialogActions } from './dialogactions';
export { DialogContent } from './dialogcontent';
export { DialogContentText } from './dialogcontenttext';
export { DialogTitle } from './dialogtitle';
export { Divider } from './divider';
export { IconButton } from './iconbutton';
export { Paper } from './paper';
export { Stack } from './stack';
export { Tab } from './tab';
export { Tabs } from './tabs';
export { Toolbar } from './toolbar';
export { Tooltip } from './tooltip';
export { Typography } from './typography';

0 comments on commit 02b9027

Please sign in to comment.