update: hooks, web

This commit is contained in:
Vick Scarlet
2026-08-11 02:17:31 +08:00
parent 727fe5de77
commit 5353edd6a1
67 changed files with 2339 additions and 2243 deletions
+17
View File
@@ -0,0 +1,17 @@
import { useRemake } from '@remake/hooks'
import './Home.css'
export default function Home() {
const remake = useRemake()
return (
<div className="screen home">
<div className="title">
<h1></h1>
<h2></h2>
</div>
<button className="primary" onClick={remake}>
</button>
</div>
)
}