diff --git a/packages/pf-codemods/README.md b/packages/pf-codemods/README.md index f988ea20..8f1763ae 100644 --- a/packages/pf-codemods/README.md +++ b/packages/pf-codemods/README.md @@ -3,7 +3,7 @@ Hey PatternFly-React devs! `pf-codemods` is an eslint wrapper to update @patternfly/react-core@5.x.x code to 6.x.x. We hope these rules and their autofixers will help you more quickly adopt our breaking changes. These rules are not designed to fix all build errors, but they can help to fix easy ones as well as point out the more complicated ones and offer suggestions on how you might go about fixing them. - + If you have any hardcoded Patternfly class names in your project (i.e. pf-c-button) you also might want to see if our [class-name-updater package](./packages/class-name-updater/README.md) would be helpful for you. ## Usage @@ -455,7 +455,7 @@ In: import { Chip } from '@patternfly/react-core/deprecated'; export const ChipReplaceWithLabelInput = () => ( - + This is a chip ); @@ -467,7 +467,7 @@ Out: import { Label } from '@patternfly/react-core'; export const ChipReplaceWithLabelInput = () => ( -