Some docs n stuff

This commit is contained in:
DrHaid
2025-12-13 22:02:20 +01:00
parent 8f62f8a062
commit 0a5be21d12
5 changed files with 9 additions and 17 deletions

View File

@@ -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 👌🪓
![todo-tree](./docs/todo-tree.png) ![todo-tree](./docs/todo-tree.png)

View File

@@ -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>

View File

@@ -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>

View File

@@ -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,16 +20,12 @@ 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>
); );
}; };

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 MiB