2020-07-21 12:14:56 +02:00
|
|
|
import Translations from "../../../UI/i18n/Translations";
|
2020-07-31 17:38:03 +02:00
|
|
|
import {TagRenderingOptions} from "../../TagRenderingOptions";
|
2020-07-21 12:14:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
export default class ShopPump extends TagRenderingOptions {
|
|
|
|
constructor() {
|
2020-07-21 23:31:41 +02:00
|
|
|
const to = Translations.t.cyclofix.shop.qName
|
2020-07-21 12:14:56 +02:00
|
|
|
super({
|
2020-07-21 23:31:41 +02:00
|
|
|
question: to.question,
|
2020-07-21 12:14:56 +02:00
|
|
|
freeform: {
|
|
|
|
key: "name",
|
2020-07-21 23:31:41 +02:00
|
|
|
renderTemplate: to.render,
|
|
|
|
template: to.template
|
2020-07-21 12:14:56 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|