diff --git a/src/components/Select/index.tsx b/src/components/Select/index.tsx new file mode 100644 index 0000000..5f1c399 --- /dev/null +++ b/src/components/Select/index.tsx @@ -0,0 +1,7 @@ +import { Wrapper } from './styles'; + +const Select = () => { + return ; +}; + +export default Select; diff --git a/src/components/Select/styles.ts b/src/components/Select/styles.ts new file mode 100644 index 0000000..81d027f --- /dev/null +++ b/src/components/Select/styles.ts @@ -0,0 +1,3 @@ +import styled, { css } from 'styled-components'; + +export const Wrapper = styled.div``;