From 2faed68d937e2771f51a514b91cb1c5e6860e0a6 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 29 Nov 2024 17:04:21 +0100 Subject: [PATCH] remove unused component --- client/src/ui/components/DemoComponent.tsx | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 client/src/ui/components/DemoComponent.tsx diff --git a/client/src/ui/components/DemoComponent.tsx b/client/src/ui/components/DemoComponent.tsx deleted file mode 100644 index 14ef1de..0000000 --- a/client/src/ui/components/DemoComponent.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import { Component } from "react"; -import Flicking from "@egjs/react-flicking"; -import { Perspective } from "@egjs/flicking-plugins"; - -export default class DemoComponent extends Component { - private _plugins = [new Perspective({ rotate: 0.5 })]; - - public render() { - return ( - -
1
-
2
-
3
-
4
-
5
-
6
-
- ); - } -}