mark模块更新

This commit is contained in:
2025-03-28 09:40:14 +08:00
parent 9129dffa4c
commit 508ec96029
14 changed files with 666 additions and 29 deletions

View File

@@ -1,5 +1,10 @@
import { basename } from '../modules/basename';
console.log('basename', basename);
import { App as MarkApp } from '../manager/Manager';
export const App = () => {
return <div className='bg-slate-200 w-full h-full border'></div>;
return (
<div className=' w-full h-full overflow-hidden'>
<MarkApp />
</div>
);
};