mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-23 04:19:48 +00:00
11 lines
173 B
TypeScript
11 lines
173 B
TypeScript
import styled from 'styled-components';
|
|
|
|
// Styled
|
|
import CommonInput from './CommonInput';
|
|
|
|
const TextArea = styled.textarea`
|
|
${CommonInput}
|
|
`;
|
|
|
|
export default TextArea;
|