This replaces h2 heading on the steps with h1 and adds a size modifier to keep the sizes approximately similar.
18 lines
305 B
TypeScript
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;
|