From 89de97035de10b8e844387ea2f9490e518e470af Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Thu, 3 Jun 2021 23:45:09 +0100 Subject: [PATCH] Add backend feature card --- src/components/BackendFeatureCard/index.tsx | 36 +++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/components/BackendFeatureCard/index.tsx diff --git a/src/components/BackendFeatureCard/index.tsx b/src/components/BackendFeatureCard/index.tsx new file mode 100644 index 0000000..f23f512 --- /dev/null +++ b/src/components/BackendFeatureCard/index.tsx @@ -0,0 +1,36 @@ +import { Box, Text } from '..'; +import { Backend } from '../../assets'; +import { FeatureOutput } from '../../graphql/types'; + +type BackendFeatureCardProps = { + feature: FeatureOutput; +}; + +const BackendFeatureCard = ({ feature }: BackendFeatureCardProps) => { + return ( + + + + + {feature.name} + + + + + + + + ); +}; + +export default BackendFeatureCard;