@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
18 lines • 428 B
TypeScript
import { TutorialPanelProps } from '../../interfaces';
interface TaskProps {
task: TutorialPanelProps.Task;
taskIndex: number;
currentTaskIndex: number;
expanded: boolean;
onToggleExpand: (step: number) => void;
i18nStrings: TutorialPanelProps['i18nStrings'];
}
export declare function Task({
task,
taskIndex,
currentTaskIndex,
expanded,
onToggleExpand,
i18nStrings
}: TaskProps): JSX.Element;
export {};