Extract components and shapes into their respective modules

This commit is contained in:
Gasim Gasimzada 2020-01-06 21:17:38 +04:00
parent 86a1c29eec
commit e3e3dd543f
5 changed files with 153 additions and 147 deletions

View file

@ -10,7 +10,7 @@ type Props = {
onChange: (value: string) => void;
};
export default class EditableText extends Component<Props, InputState> {
export class EditableText extends Component<Props, InputState> {
constructor(props: Props) {
super(props);