12 lines
522 B
JavaScript
12 lines
522 B
JavaScript
import AbsFilterPanel from 'oak-frontend-base/es/components/filterPanel';
|
|
import AbsList from 'oak-frontend-base/es/components/list';
|
|
import AbsListPro from 'oak-frontend-base/es/components/listPro';
|
|
import AbsDetail from 'oak-frontend-base/es/components/detail';
|
|
import AbsUpsert from 'oak-frontend-base/es/components/upsert';
|
|
const FilterPanel = AbsFilterPanel;
|
|
const List = AbsList;
|
|
const ListPro = AbsListPro;
|
|
const Detail = AbsDetail;
|
|
const Upsert = AbsUpsert;
|
|
export { FilterPanel, List, ListPro, Detail, Upsert, };
|