aboutsummaryrefslogtreecommitdiff
path: root/benchmark/frontend/src/components/data/dashboard/CategorySuccess.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/frontend/src/components/data/dashboard/CategorySuccess.tsx')
-rw-r--r--benchmark/frontend/src/components/data/dashboard/CategorySuccess.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/benchmark/frontend/src/components/data/dashboard/CategorySuccess.tsx b/benchmark/frontend/src/components/data/dashboard/CategorySuccess.tsx
new file mode 100644
index 000000000..f7304399f
--- /dev/null
+++ b/benchmark/frontend/src/components/data/dashboard/CategorySuccess.tsx
@@ -0,0 +1,16 @@
+import React, { useState } from "react";
+import tw from "tailwind-styled-components";
+
+interface CategorySuccessProps {
+ data: any;
+}
+
+const CategorySuccess: React.FC<CategorySuccessProps> = ({ data }) => {
+ return <CategorySuccessContainer></CategorySuccessContainer>;
+};
+
+export default CategorySuccess;
+
+const CategorySuccessContainer = tw.div`
+
+`;