Add textarea component

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