Add link component

This commit is contained in:
Hazem Krimi
2021-04-07 23:20:35 +01:00
parent 03b3643e0d
commit 449c421f4c
3 changed files with 11 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
describe('Link test suite', () => {});
+7
View File
@@ -0,0 +1,7 @@
import { Wrapper } from './styles';
const Link = () => {
return <Wrapper></Wrapper>;
};
export default Link;
+3
View File
@@ -0,0 +1,3 @@
import styled from 'styled-components';
export const Wrapper = styled.div``;