Adding bootstreap template (fix #2)

This commit is contained in:
Alex
2021-04-04 13:51:53 +02:00
parent 6add70d5bb
commit 7a4fa1bde2
11 changed files with 5274 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import "bootstrap/scss/bootstrap.scss";
import { render } from "solid-js/web";
/**
* This file was taken from the cheatsheet example of bootstrap.
* You will most likely remove it if using this template.
*/
import "./cheatsheet.scss";
import App from "./App";
render(() => <App />, document.getElementById("root"));