8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
|
import { PageSection } from "@patternfly/react-core";
|
||
|
|
||
|
const PersonalInfo = () => (
|
||
|
<PageSection>This is the personal info page.</PageSection>
|
||
|
);
|
||
|
|
||
|
export default PersonalInfo;
|