Skip to content

Commit

Permalink
fix: ssr playground
Browse files Browse the repository at this point in the history
  • Loading branch information
htmujahid committed Oct 2, 2024
1 parent 015ea14 commit 4e4573a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions playground/ssr-router/src/entry-client.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// import './style.css';
// import { createApp } from '@sonnetjs/core';
import './style.css';
import { createApp } from '@sonnetjs/core';

// import App from './App';
// import { routers } from './routes';
import App from './App';
import { routers } from './routes';

// const app = createApp();
// app.root(App);
// app.use(routers);
// app.lazy();
// app.ssr();
// app.mount('#app');
// app.initialized();
const app = createApp();
app.root(App);
app.use(routers);
app.lazy();
app.ssr();
app.mount('#app');
app.initialized();

0 comments on commit 4e4573a

Please sign in to comment.