-
Notifications
You must be signed in to change notification settings - Fork 671
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace usage of deprecated
JSX
global namespace with React.JSX
- This change was made by running `npx types-react-codemod scoped-jsx .` in preparation for React 19.
- Loading branch information
1 parent
9639566
commit 13b0421
Showing
1 changed file
with
82 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,82 +1,82 @@ | ||
import Heading from '@theme/Heading' | ||
import clsx from 'clsx' | ||
import type { FC } from 'react' | ||
import { memo } from 'react' | ||
import styles from './styles.module.css' | ||
|
||
interface FeatureItem { | ||
title: string | ||
description: JSX.Element | ||
} | ||
|
||
const FeatureList: FeatureItem[] = [ | ||
{ | ||
title: 'Predictable', | ||
description: ( | ||
<> | ||
Like Redux, Reselect gives users a <b>consistent mental model</b> for | ||
memoizing functions. Extract input values, recalculate when any input | ||
changes. | ||
</> | ||
) | ||
}, | ||
{ | ||
title: 'Optimized', | ||
description: ( | ||
<> | ||
Reselect{' '} | ||
<b> | ||
minimizes the number of times expensive computations are performed | ||
</b> | ||
, reuses existing result references if nothing has changed, and improves | ||
performance. | ||
</> | ||
) | ||
}, | ||
{ | ||
title: 'Customizable', | ||
description: ( | ||
<> | ||
Reselect comes with fast defaults, but provides{' '} | ||
<b>flexible customization options</b>. Swap memoization methods, change | ||
equality checks, and customize for your needs. | ||
</> | ||
) | ||
}, | ||
{ | ||
title: 'Type-Safe', | ||
description: ( | ||
<> | ||
Reselect is designed for <b>great TypeScript support</b>. Generated | ||
selectors infer all types from input selectors. | ||
</> | ||
) | ||
} | ||
] | ||
|
||
const Feature: FC<FeatureItem> = memo(({ title, description }) => { | ||
return ( | ||
<div className={clsx('col col--3')}> | ||
<div className="text--center padding-horiz--md"> | ||
<Heading as="h3">{title}</Heading> | ||
<p>{description}</p> | ||
</div> | ||
</div> | ||
) | ||
}) | ||
|
||
const HomepageFeatures: FC = () => { | ||
return ( | ||
<section className={styles.features}> | ||
<div className="container"> | ||
<div className="row"> | ||
{FeatureList.map((props, idx) => ( | ||
<Feature key={idx} {...props} /> | ||
))} | ||
</div> | ||
</div> | ||
</section> | ||
) | ||
} | ||
|
||
export default memo(HomepageFeatures) | ||
import Heading from '@theme/Heading' | ||
import clsx from 'clsx' | ||
import type { FC, JSX } from 'react' | ||
import { memo } from 'react' | ||
import styles from './styles.module.css' | ||
|
||
interface FeatureItem { | ||
title: string | ||
description: JSX.Element | ||
} | ||
|
||
const FeatureList: FeatureItem[] = [ | ||
{ | ||
title: 'Predictable', | ||
description: ( | ||
<> | ||
Like Redux, Reselect gives users a <b>consistent mental model</b> for | ||
memoizing functions. Extract input values, recalculate when any input | ||
changes. | ||
</> | ||
) | ||
}, | ||
{ | ||
title: 'Optimized', | ||
description: ( | ||
<> | ||
Reselect{' '} | ||
<b> | ||
minimizes the number of times expensive computations are performed | ||
</b> | ||
, reuses existing result references if nothing has changed, and improves | ||
performance. | ||
</> | ||
) | ||
}, | ||
{ | ||
title: 'Customizable', | ||
description: ( | ||
<> | ||
Reselect comes with fast defaults, but provides{' '} | ||
<b>flexible customization options</b>. Swap memoization methods, change | ||
equality checks, and customize for your needs. | ||
</> | ||
) | ||
}, | ||
{ | ||
title: 'Type-Safe', | ||
description: ( | ||
<> | ||
Reselect is designed for <b>great TypeScript support</b>. Generated | ||
selectors infer all types from input selectors. | ||
</> | ||
) | ||
} | ||
] | ||
|
||
const Feature: FC<FeatureItem> = memo(({ title, description }) => { | ||
return ( | ||
<div className={clsx('col col--3')}> | ||
<div className="text--center padding-horiz--md"> | ||
<Heading as="h3">{title}</Heading> | ||
<p>{description}</p> | ||
</div> | ||
</div> | ||
) | ||
}) | ||
|
||
const HomepageFeatures: FC = () => { | ||
return ( | ||
<section className={styles.features}> | ||
<div className="container"> | ||
<div className="row"> | ||
{FeatureList.map((props, idx) => ( | ||
<Feature key={idx} {...props} /> | ||
))} | ||
</div> | ||
</div> | ||
</section> | ||
) | ||
} | ||
|
||
export default memo(HomepageFeatures) |