diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-05-10 08:49:02 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-05-10 08:49:02 +0200 |
commit | da96490d5e458def5a7511deab26fc5cfeb22af3 (patch) | |
tree | 11a542b63d8a58a21f112351dc4bfa4ab2a1ad7c /pages/index.tsx | |
parent | 2604a4676abb5ab9d5c01aa2064648dbba0b6a06 (diff) |
loop keyframe component
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} /> </>; } |