add prompt js page

This commit is contained in:
2024-09-25 08:56:20 +08:00
parent d53c18606e
commit 3da62fd254
26 changed files with 436 additions and 115 deletions

View File

@@ -4,6 +4,9 @@ import { App as ContainerApp } from './pages/container';
import { App as PanelApp } from './pages/panel';
import { App as PublishApp } from './pages/publish';
import { App as CodeEditorApp } from './pages/code-editor';
import { App as MapApp } from './pages/map';
import { App as PromptApp } from './pages/prompt';
import '@abearxiong/container/dist/container.css';
export const App = () => {
@@ -20,6 +23,8 @@ export const App = () => {
<Route path='/panel/*' element={<PanelApp />} />
<Route path='/publish/*' element={<PublishApp />} />
<Route path='/code-editor' element={<CodeEditorApp />} />
<Route path='/map/*' element={<MapApp />} />
<Route path='/prompt/*' element={<PromptApp />} />
<Route path='/404' element={<div>404</div>} />
<Route path='*' element={<div>404</div>} />
</Routes>