import Combine from "../Base/Combine"; import {FlowStep} from "./FlowStep"; import {UIEventSource} from "../../Logic/UIEventSource"; import Translations from "../i18n/Translations"; import Title from "../Base/Title"; export default class Introdution extends Combine implements FlowStep { readonly IsValid: UIEventSource = new UIEventSource(true); readonly Value: UIEventSource = new UIEventSource(undefined); constructor() { super([ new Title(Translations.t.importHelper.title), Translations.t.importHelper.description, Translations.t.importHelper.importFormat, ]); this.SetClass("flex flex-col") } }