Add select component

This commit is contained in:
Hazem Krimi
2021-04-20 01:20:54 +01:00
parent 7e46fc8b6e
commit fa4d48c7e4
2 changed files with 10 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { Wrapper } from './styles';
const Select = () => {
return <Wrapper></Wrapper>;
};
export default Select;
+3
View File
@@ -0,0 +1,3 @@
import styled, { css } from 'styled-components';
export const Wrapper = styled.div``;