1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-22 19:44:21 +00:00

🔨 Remove preview website

This commit is contained in:
Steffo 2021-08-24 23:07:34 +02:00
parent bb6eb10c1f
commit 2d439c3b10
Signed by: steffo
GPG key ID: 6965406171929D01
3 changed files with 3 additions and 35 deletions

View file

@ -37,13 +37,11 @@
"babel-loader": "8.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 30060 -s public",
"build-storybook": "build-storybook -s public",
"deploy-storybook": "storybook-to-ghpages"
"start": "start-storybook -p 30060 -s public",
"build": "build-storybook -s public",
"deploy": "storybook-to-ghpages"
},
"browserslist": {
"production": [

View file

@ -1,14 +0,0 @@
import * as React from "react"
import * as ReactDOM from "react-dom"
import {Bluelib} from "./components/Bluelib";
import * as Colors from "./utils/Colors"
import {Chapter} from "./components/chapters/Chapter";
import {Heading} from "./components/common/Heading";
import {Panel} from "./components/panels/Panel";
export function Preview({...props}): JSX.Element {
return (
<span>Nothing to render here.</span>
)
}

View file

@ -1,16 +0,0 @@
import React from 'react';
import ReactDOM from 'react-dom';
import Preview from './Preview';
import reportWebVitals from './reportWebVitals';
ReactDOM.render(
<React.StrictMode>
<Preview/>
</React.StrictMode>,
document.getElementById('react-root')
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();