debian-image-builder-frontend/src/Components/sharedComponents/BetaLabel.tsx
regexowl 1bf459ba58 Components: Migrate remaining files to TypeScript
Remaining JavaScript files were migrated to TypeScript. Files that didn't include JSX were renamed from `.tsx` to `.ts`.
2024-05-03 16:36:26 +02:00

15 lines
246 B
TypeScript

import React from 'react';
import { Label } from '@patternfly/react-core';
import './BetaLabel.scss';
const BetaLabel = () => {
return (
<Label className="beta-label">
<b>Preview</b>
</Label>
);
};
export default BetaLabel;