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

16
src/pages/map/index.tsx Normal file
View File

@@ -0,0 +1,16 @@
export const App = () => {
const serverList = ['container', 'panel', 'publish', 'code-editor', 'map'];
return (
<div className='p-2 w-full h-full bg-gray-200'>
<div className='flex flex-col w-1/2 m-auto bg-white p-4 border rounded-md shadow-md'>
{serverList.map((item) => {
return (
<div key={item} className='flex flex-col'>
<div>{item}</div>
</div>
);
})}
</div>
</div>
);
};