6 lines
167 B
TypeScript
6 lines
167 B
TypeScript
import { App } from '@kevisual/router';
|
|
import { useContextKey } from '@kevisual/context';
|
|
|
|
export const app = useContextKey<App>('app', () => {
|
|
return new App()
|
|
}); |