×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Text
Posted by: Marcos Moreira
Added: Feb 27, 2021 8:12 PM
Modified: Mar 7, 2021 9:29 AM
Views: 4777
  1. import React, { FunctionComponent } from 'react';
  2. import { Wrapper } from './styles';
  3.  
  4. export interface Props {}
  5.  
  6. export const Name:FunctionComponent<Props> = ({}) => {
  7.         return <Wrapper></Wrapper>;
  8. }