feat: create stucture
ci-front / build (push) Successful in 2m21s

This commit is contained in:
2026-04-03 19:56:41 +03:00
parent a8b6265a40
commit add00401de
12 changed files with 2655 additions and 430 deletions
+11
View File
@@ -0,0 +1,11 @@
import { useState } from "react";
export const HomePage = () => {
const [test, setTest] = useState();
return (
<div>
<h1>Home page</h1>
</div>
);
};