diff --git a/gfi-ihk-2024/stories/sections/survey/SurveyComponent.js b/gfi-ihk-2024/stories/sections/survey/SurveyComponent.js index 4e79edc..da6bd48 100644 --- a/gfi-ihk-2024/stories/sections/survey/SurveyComponent.js +++ b/gfi-ihk-2024/stories/sections/survey/SurveyComponent.js @@ -1,7 +1,7 @@ import './survey.scss'; import $ from 'jquery'; import {createElement} from "../../_global/scripts/helpers"; -import {SurveyComplex, SurveySimple} from "./SurveyData"; +import {SurveyComplexData, SurveySimpleData} from "./SurveyData"; import {createButton} from "../../atoms/button/ButtonComponent"; import IHKSurvey from "./survey"; @@ -10,7 +10,7 @@ export const createSurvey = ({ headline = 'Einführung von 2G im Einzelhandel: Was halten Sie davon?', copy = 'Hier können Sie abstimmen:', method = 'get', - data = SurveySimple, + data = SurveySimpleData, }) => { const section = createElement('section', ['participation']); const container = createElement('div', ['container'], null, section);