Some docs n stuff
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
## TODO Tree Chopper
|
## TODO Tree Chopper
|
||||||
|
|
||||||
Efficiently chop down your TODO trees in Miro 👌
|
Efficiently chop down your TODO trees in Miro 👌🪓
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|||||||
2
app.html
2
app.html
@@ -7,9 +7,7 @@
|
|||||||
<title>TODO Tree Chopper 🪓</title>
|
<title>TODO Tree Chopper 🪓</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
|
|
||||||
<script type="module" src="/src/app.tsx"></script>
|
<script type="module" src="/src/app.tsx"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
13
index.html
13
index.html
@@ -11,24 +11,21 @@
|
|||||||
<div id="root" aria-hidden="true">
|
<div id="root" aria-hidden="true">
|
||||||
<div class="grid container">
|
<div class="grid container">
|
||||||
<div class="cs1 ce12">
|
<div class="cs1 ce12">
|
||||||
<p style="font-size: large">Great, your app is running locally</p>
|
<h1 style="font-size: large">TODO Tree Chopper</h1>
|
||||||
<p>
|
<p>
|
||||||
You can now create your Developer team to get your app running in
|
Efficiently chop down your TODO trees in Miro 👌🪓
|
||||||
Miro.
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
<img src="/src/assets/todo-choppers.gif"/>
|
||||||
<div class="cs1 ce12">
|
<div class="cs1 ce12">
|
||||||
<a
|
<a
|
||||||
class="button button-primary"
|
class="button button-primary"
|
||||||
href="https://developers.miro.com/docs/create-a-developer-team"
|
href="https://github.com/DrHaid/todo-tree-chopper"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
>
|
>
|
||||||
Create a Developer team
|
GitHub
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="cs1 ce12">
|
|
||||||
<p>To see your app, open it in a app panel on Miro.com, or preview it at <a href="/app.html" class="link link-primary">this url</a></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script type="module" src="/src/index.ts"></script>
|
<script type="module" src="/src/index.ts"></script>
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import * as React from 'react';
|
|||||||
import {createRoot} from 'react-dom/client';
|
import {createRoot} from 'react-dom/client';
|
||||||
|
|
||||||
import '../src/assets/style.css';
|
import '../src/assets/style.css';
|
||||||
|
import TodoChoppers from '../src/assets/todo-choppers.gif';
|
||||||
import { findExistingAxe } from '.';
|
import { findExistingAxe } from '.';
|
||||||
|
|
||||||
const App: React.FC = () => {
|
const App: React.FC = () => {
|
||||||
@@ -19,15 +20,11 @@ const App: React.FC = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="grid wrapper">
|
<div>
|
||||||
<div className="cs1 ce12">
|
<img src={TodoChoppers}/>
|
||||||
<h1>TODO Tree Chopper 🪓</h1>
|
|
||||||
</div>
|
|
||||||
<div className="cs1 ce12">
|
|
||||||
<button className="button button-primary" onClick={addAxe}>
|
<button className="button button-primary" onClick={addAxe}>
|
||||||
Create Axe
|
Create Axe
|
||||||
</button>
|
</button>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
BIN
src/assets/todo-choppers.gif
Normal file
BIN
src/assets/todo-choppers.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.7 MiB |
Reference in New Issue
Block a user