debian-image-builder-frontend/src/Components/CreateImageWizard/steps/Repositories/components/Loading.tsx
regexowl 1fc1f0cb8d src: Run codemods and lint
Run `npx @patternfly/pf-codemods@latest src --v6 --fix` and lint autofix to get the bulk of the changes in.
2025-05-28 09:08:52 -05:00

15 lines
298 B
TypeScript

import React from 'react';
import { EmptyState, Spinner, Bullseye } from '@patternfly/react-core';
export const Loading = () => {
return (
<Bullseye>
<EmptyState
headingLevel="h4"
icon={Spinner}
titleText="Loading"
></EmptyState>
</Bullseye>
);
};