feat: add tool json (#5)

Co-authored-by: typist <git@mail.typist.cc>
Reviewed-on: #5
This commit is contained in:
2025-10-28 03:48:37 +08:00
parent c0aa618dfa
commit 97b2093b86
8 changed files with 214 additions and 1 deletions

View File

@@ -1,10 +1,14 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { Toaster } from '@/components/ui/sonner'
import './index.css'
import { AppRouter } from './router'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<AppRouter />
<Toaster />
</StrictMode>
)