chore: Moves components out of the commons folder (#18931)

* refactor: Moves components out of the commons folder

* Fixes tests
This commit is contained in:
Michael S. Molina
2022-02-25 10:17:32 -03:00
committed by GitHub
parent 2cb3635256
commit fd4bd1edbc
66 changed files with 331 additions and 279 deletions

View File

@@ -18,7 +18,8 @@
*/
import React, { FunctionComponent, useState } from 'react';
import SchemaForm, { FormProps, FormValidation } from 'react-jsonschema-form';
import { Row, Col, Input, TextArea } from 'src/common/components';
import { Row, Col } from 'src/common/components';
import { Input, TextArea } from 'src/components/Input';
import { t, styled } from '@superset-ui/core';
import * as chrono from 'chrono-node';
import ModalTrigger from 'src/components/ModalTrigger';