Squashed 'skel/' content from commit 25b1c59

git-subtree-dir: skel
git-subtree-split: 25b1c59010c85e98afe3efd13dbffb6a53c56b2f
This commit is contained in:
Brian Sakal
2021-03-09 00:46:18 -05:00
commit aec17ca796
8 changed files with 181 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
function App(){
return {
view: function(){
return m('div.app', [
m('h1', 'App')
]);
}
};
}
export default App;
View File
+17
View File
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tabler</title>
<!--<link rel="stylesheet" href="tachyons.min.css"></link>-->
<link rel="stylesheet" href="index.css"></link>
<!--<link rel="stylesheet" href="mini-default.min.css"></link>-->
<!--<link rel="stylesheet" href="animate.min.css"></link>-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--<script src="./mithril.min.js"></script>-->
<script src="./mithril.min.js"></script>
</head>
<body>
<script type="module" src="./index.js"></script>
</body>
</html>
+4
View File
@@ -0,0 +1,4 @@
import App from './App.js';
var root = document.body;
m.mount(root, App);
+1
View File
File diff suppressed because one or more lines are too long