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",
"version": "1.0.1",
"version": "1.0.2",
"description": "",
"main": "out/index.js",
"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 Container from "./Container";
@ -19,7 +19,7 @@ export {
InputGroup,
InputRadio,
InputSelect,
TextArea
TextArea,
} from "./Input";
export {
@ -35,5 +35,5 @@ export {
IconButton,
Header,
List,
Table
Table,
};