1
import React from 'react';
●
2
import { OldButton
} from '@patternfly/react-core';
Migration Required
3
4
export const TestComponent = () => {
5
// TODO: Update OldButton later
6
const myOldButton = 'something';
7
const docs = "Check OldButton docs";
8
9
return (
10
<div>
●
11
<OldButton
variant="primary">Click me</OldButton>
Migration Required
12
{/* OldButton is deprecated */}
13
</div>
14
);
15
};