DocSpace-client/packages/asc-web-common/components/Loaders/index.js

32 lines
837 B
JavaScript
Raw Normal View History

2020-11-06 14:43:59 +00:00
import Rectangle from "./RectangleLoader/index";
import Circle from "./CircleLoader/index";
import Header from "./HeaderLoader/index";
2020-11-06 12:20:06 +00:00
import SectionHeader from "./SectionHeaderLoader/index";
import ArticleHeader from "./ArticleHeaderLoader/index";
import TreeFolders from "./TreeFolderLoader/index";
import Row from "./RowLoader/index";
2020-11-06 12:20:06 +00:00
import Rows from "./RowsLoader/index";
2020-09-28 13:20:16 +00:00
import Text from "./TextLoader";
2020-11-06 12:20:06 +00:00
import Filter from "./FilterLoader/index";
import ProfileView from "./ProfileViewLoader/index";
import SettingsFiles from "./SettingsFilesLoader";
2020-11-11 21:12:12 +00:00
import Group from "./GroupLoader/index";
import HistoryRows from "./HistoryRowsLoader";
export default {
2020-11-06 12:20:06 +00:00
Rectangle,
Circle,
2020-11-06 14:43:59 +00:00
Header,
2020-11-05 08:15:15 +00:00
SectionHeader,
ArticleHeader,
TreeFolders,
Row,
Rows,
Text,
Filter,
ProfileView,
SettingsFiles,
2020-11-11 21:12:12 +00:00
Group,
HistoryRows,
};