diff --git a/src/components/index.ts b/src/components/index.ts index e99b25e..477cc23 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -1,5 +1,7 @@ import { withTheme } from '../hoc/withTheme' import { default as TextComponent } from './Text' +import { default as ButtonComponent } from './Button' export const Text = withTheme(TextComponent); +export const Button = withTheme(ButtonComponent); diff --git a/src/index.ts b/src/index.ts index 254f9db..c10277e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1 +1 @@ -export { Text } from './components'; \ No newline at end of file +export { Text, Button } from './components'; \ No newline at end of file