1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 16:04:21 +00:00

Maybe? (0.10.2)

This commit is contained in:
Steffo 2020-06-18 17:38:08 +02:00
parent 3b0e0efc80
commit dd2de257f8
Signed by: steffo
GPG key ID: 896A80F55F7C97F0
5 changed files with 224 additions and 438 deletions

652
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -32,6 +32,7 @@
"preact-router": "^3.2.1", "preact-router": "^3.2.1",
"react-syntax-highlighter": "^12.2.1", "react-syntax-highlighter": "^12.2.1",
"showdown": "^1.9.1", "showdown": "^1.9.1",
"style-loader": "^1.2.1" "style-loader": "^1.2.1",
"bluelib": "^0.10.1"
} }
} }

View file

@ -1,5 +1,4 @@
import style from "./Plus.less"; import style from "./Plus.less";
import { Component } from 'preact';
export default function(props) { export default function(props) {
return <span class={style.plus}>{props.children}</span>; return <span class={style.plus}>{props.children}</span>;

View file

@ -1,5 +1,4 @@
import style from './Footer.less'; import style from './Footer.less';
import { Component } from 'preact';
export default function(props) { export default function(props) {
return ( return (

View file

@ -1,7 +1,4 @@
import Markdown from "../components/Rendering/Markdown"; import { } from "bluelib";
import Panel from "../components/Elements/Panel";
import Match from "preact-router/match";
import ILatex from "../components/Rendering/ILatex";
const r = String.raw; const r = String.raw;