初始化项目:前端 React+TS+Tailwind+antd 脚手架,后端 Go,保留原型设计稿

This commit is contained in:
yml2213
2026-07-14 11:01:33 +08:00
commit cbe81f7dfb
27 changed files with 12233 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
const App = () => {
return (
<div className="h-screen flex items-center justify-center bg-neutral-50">
<div className="text-center">
<h1 className="text-2xl font-bold text-neutral-900 mb-2"></h1>
<p className="text-neutral-500">线</p>
</div>
</div>
)
}
export default App