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

@@ -2,6 +2,7 @@ import * as React from 'react';
import {createRoot} from 'react-dom/client';
import '../src/assets/style.css';
import TodoChoppers from '../src/assets/todo-choppers.gif';
import { findExistingAxe } from '.';
const App: React.FC = () => {
@@ -19,15 +20,11 @@ const App: React.FC = () => {
};
return (
<div className="grid wrapper">
<div className="cs1 ce12">
<h1>TODO Tree Chopper 🪓</h1>
</div>
<div className="cs1 ce12">
<div>
<img src={TodoChoppers}/>
<button className="button button-primary" onClick={addAxe}>
Create Axe
</button>
</div>
</div>
);
};