diff options
Diffstat (limited to 'pages/index.tsx')
-rw-r--r-- | pages/index.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index 4cd0a1c..2865e64 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,7 +1,8 @@ import AppBar from '@material-ui/core/AppBar'; import Toolbar from '@material-ui/core/Toolbar'; -import { PressureIcon, SlideKeyframe } from '../components/icons'; +import { PressureIcon } from '../components/icons'; +import Loop from '../components/loop'; export default function Index() { return <> @@ -11,5 +12,6 @@ export default function Index() { <h1>pressure</h1> </Toolbar> </AppBar> + <Loop width={100} /> </>; } |