Fix wrong import

This commit is contained in:
Fabian Stamm 2020-04-10 19:56:13 +02:00
parent b47afcff0a
commit b56e59f6d4
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@hibas123/theme-preact", "name": "@hibas123/theme-preact",
"version": "1.0.1", "version": "1.0.2",
"description": "", "description": "",
"main": "out/index.js", "main": "out/index.js",
"dependencies": { "dependencies": {

View File

@ -1,4 +1,4 @@
import "@hibas123/theme/out/pref.css"; import "@hibas123/theme/out/prefix.css";
import Theme, { IThemeProps, ThemeModes } from "./Theme"; import Theme, { IThemeProps, ThemeModes } from "./Theme";
import Container from "./Container"; import Container from "./Container";
@ -19,7 +19,7 @@ export {
InputGroup, InputGroup,
InputRadio, InputRadio,
InputSelect, InputSelect,
TextArea TextArea,
} from "./Input"; } from "./Input";
export { export {
@ -35,5 +35,5 @@ export {
IconButton, IconButton,
Header, Header,
List, List,
Table Table,
}; };