Initial commit

This commit is contained in:
kevisual
2025-03-07 22:46:59 +08:00
commit 479eaccf57
14 changed files with 4701 additions and 0 deletions

8
src/app.ts Normal file
View File

@@ -0,0 +1,8 @@
import { App } from '@kevisual/router';
import { useContextKey } from '@kevisual/use-config/context';
const init = () => {
return new App();
};
export const app = useContextKey('app', init);