1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-10-16 05:37:28 +00:00
This commit is contained in:
Steffo 2020-10-14 02:47:15 +02:00
parent 6220da11e3
commit 3f2f106b9e
2 changed files with 6 additions and 1 deletions

View file

@ -1,7 +1,7 @@
{
"private": false,
"name": "bluelib",
"version": "0.16.0",
"version": "0.16.1",
"license": "AGPL-3.0-or-later",
"source": "src/index.js",
"main": "dist/index.js",

View file

@ -41,6 +41,9 @@ import {royalnetApiRequest, RoyalnetApiError} from "./utils/royalnetApiRequest";
import Bluelib from "./components/Bluelib";
import Bottom from "./components/Layout/Bottom";
import Unmargin from "./components/Layout/Unmargin";
import CodeDefaultStyle from "./contexts/CodeDefaultStyle";
import CodeDefaultLanguage from "./contexts/CodeDefaultLanguage";
import Sample from "./routes/Sample";
export default function(props) {
@ -92,4 +95,6 @@ export {
Bluelib,
Bottom,
Unmargin,
CodeDefaultStyle,
CodeDefaultLanguage,
}