UNPKG

@adaptabletools/adaptable

Version:

Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

9 lines (8 loc) 498 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { Tag } from '../../../components/Tag'; import { UIHelper } from '../../UIHelper'; import { SummaryText, useOnePageAdaptableWizardContext } from '../../Wizard/OnePageAdaptableWizard'; export const ScheduleScheduleSummary = () => { const { data } = useOnePageAdaptableWizardContext(); return (_jsxs(SummaryText, { children: ["Schedule: ", _jsx(Tag, { children: UIHelper.getScheduleDescription(data.Schedule) })] })); };