chore: Moves Dropdown to the components folder (#14126)

This commit is contained in:
Michael S. Molina 2021-04-20 12:48:28 -03:00 committed by GitHub
parent d1b458c4c5
commit 42fb2286ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import { EditableTabs } from 'src/common/components/Tabs';
import { Dropdown } from 'src/common/components/Dropdown';
import { Dropdown } from 'src/components/Dropdown';
import { Menu } from 'src/common/components';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';

View File

@ -22,9 +22,9 @@ import { withKnobs, boolean } from '@storybook/addon-knobs';
import { CronPicker, CronError } from 'src/components/CronPicker';
import Modal from 'src/components/Modal';
import InfoTooltip from 'src/components/InfoTooltip';
import { Dropdown } from 'src/components/Dropdown';
import Tabs, { EditableTabs } from './Tabs';
import { Menu, Input, Divider } from '.';
import { Dropdown } from './Dropdown';
export default {
title: 'Common components',