Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
iDome89 committed Aug 7, 2024
1 parent 6ac0f1b commit 8d855f4
Showing 1 changed file with 25 additions and 27 deletions.
52 changes: 25 additions & 27 deletions src/pages/UxDashboard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,33 +70,31 @@ const UxDashboard = () => {
Tool di compilazione
</PageTitle>
<Title size="xl">
Il CompilationTool è temporaneamente disabilitato. Contatta il
supporto se ha bisogno di effettuare modifiche.
{/* <BSGrid>
<ResponsiveCol size="col-lg-3" lgOrder={1}>
<Sidebar />
</ResponsiveCol>
<ResponsiveCol size="col-lg-9" lgOrder={0}>
<StyledSteps
current={currentStep}
className="aq-my-4"
direction="horizontal"
>
<StyledSteps.Step isCompleted={true} title={"Form"} />
<StyledSteps.Step
isCompleted={currentStep > 0}
title={"Preview"}
/>
<StyledSteps.Step
isCompleted={currentStep > 1}
title={"Publish"}
/>
</StyledSteps>
{currentStep === 0 && <UxDashboardForm />}
{currentStep === 1 && <Preview />}
{currentStep === 2 && <ResultsPage />}
</ResponsiveCol>
</BSGrid> */}
<BSGrid>
<ResponsiveCol size="col-lg-3" lgOrder={1}>
<Sidebar />
</ResponsiveCol>
<ResponsiveCol size="col-lg-9" lgOrder={0}>
<StyledSteps
current={currentStep}
className="aq-my-4"
direction="horizontal"
>
<StyledSteps.Step isCompleted={true} title={"Form"} />
<StyledSteps.Step
isCompleted={currentStep > 0}
title={"Preview"}
/>
<StyledSteps.Step
isCompleted={currentStep > 1}
title={"Publish"}
/>
</StyledSteps>
{currentStep === 0 && <UxDashboardForm />}
{currentStep === 1 && <Preview />}
{currentStep === 2 && <ResultsPage />}
</ResponsiveCol>
</BSGrid>
</Title>
</Container>
</FormProvider>
Expand Down

0 comments on commit 8d855f4

Please sign in to comment.