Skip to content

Commit 4689676

Browse files
committed
feat(core): updates NPM deps
1 parent 7dcefc6 commit 4689676

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed
Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
import React from 'react';
2-
import { Outlet } from 'react-router-dom';
2+
import Home from '../app/Home';
33

44
export default function Root() {
5-
return (
6-
<>
7-
<h1 style={{ textAlign: 'center' }}>React Kit Demo</h1>
8-
<hr />
5+
return (
6+
<>
7+
<h1 style={{ textAlign: 'center' }}>React Kit Demo</h1>
8+
<hr />
99

10-
<p>
11-
This is a demo of the <code>@react-kit</code> package.
12-
</p>
13-
<div id="detail">
14-
<Outlet />
15-
</div>
16-
</>
17-
);
10+
<Home />
11+
</>
12+
);
1813
}

0 commit comments

Comments
 (0)