debian-image-builder-frontend/src/Components/CreateImageWizardV2/steps/Review/index.tsx
regexowl 6e1df015e1 V2Wizard: Replace h2 heading with h1 and sizing
This replaces h2 heading on the steps with h1 and adds a size modifier to keep the sizes approximately similar.
2024-03-07 09:33:44 +01:00

18 lines
305 B
TypeScript

import React from 'react';
import { Form, Title } from '@patternfly/react-core';
import Review from './ReviewStep';
const ReviewStep = () => {
return (
<Form>
<Title headingLevel="h1" size="xl">
Review
</Title>
<Review />
</Form>
);
};
export default ReviewStep;