feat: rewrite to solidjs
This commit is contained in:
parent
74c6215c27
commit
afa2db26e7
21 changed files with 1074 additions and 1835 deletions
15
entrypoints/content/App.tsx
Normal file
15
entrypoints/content/App.tsx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import stopImage from "@/assets/stop.png";
|
||||
import "./style.css";
|
||||
import { Todo } from "@/components/Todo";
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<div class="main">
|
||||
<img class="logo" src={stopImage} />
|
||||
<h1 class="message">[go back to your work]</h1>
|
||||
<Todo />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
Loading…
Add table
Add a link
Reference in a new issue