Remaining JavaScript files were migrated to TypeScript. Files that didn't include JSX were renamed from `.tsx` to `.ts`.
15 lines
246 B
TypeScript
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;
|