![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@cloudflare/component-dropdown
Advanced tools
Cloudflare Dropdown Component
Installation with yarn is recommended
$ yarn add @cloudflare/component-dropdown
import React from 'react';
import { Dropdown, DropdownLink, DropdownSeparator } from '../../src';
import { Button, ButtonGroup } from '@cloudflare/component-button';
import { Code } from '@cloudflare/component-code';
class DropdownComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
dropdown1Open: false,
dropdown2Open: false
};
}
render() {
return (
<div>
<ButtonGroup>
<Button
type="primary"
onClick={() => this.setState({ dropdown1Open: true })}
>
Open Dropdown 1
</Button>
{this.state.dropdown1Open && (
<Dropdown onClose={() => this.setState({ dropdown1Open: false })}>
<DropdownLink to="/foo">Link to /foo</DropdownLink>
<DropdownLink to="/bar">Link to /bar</DropdownLink>
<DropdownSeparator />
<DropdownLink to="/baz">Link to /baz</DropdownLink>
<DropdownLink to="/bat">Link to /bat</DropdownLink>
<DropdownLink disabled to="/bad">
Disabled dropdown link
</DropdownLink>
</Dropdown>
)}
<Button
type="success"
onClick={() => this.setState({ dropdown2Open: true })}
>
Open Dropdown 2
</Button>
{this.state.dropdown2Open && (
<Dropdown
align="right"
onClose={() => this.setState({ dropdown2Open: false })}
>
<DropdownLink to="/foo">Link to /foo</DropdownLink>
<DropdownLink to="/bar">Link to /bar</DropdownLink>
<DropdownSeparator />
<DropdownLink to="/baz">Link to /baz</DropdownLink>
<DropdownLink to="/bat">Link to /bat</DropdownLink>
</Dropdown>
)}
</ButtonGroup>
<p>
{`You can also optionally pass an align prop with either "left" or
"right"`}
</p>
<Code isCodeBlock={true}>{`<Dropdown align="right" ...>`}</Code>
<p>
<Code>{`<DropdownLink/>`}</Code> just wraps cf-component-link so you
can use either to to specify a route or pass an onClick handler.
</p>
<Code isCodeBlock={true}>{`<DropdownLink to="/my-route"/>`}</Code>
<Code
isCodeBlock={true}
>{`<DropdownLink onClick={this.handleClick}/>`}</Code>
<p>
Note: to requires that you setup cf-util-route-handler prior to
routing.
</p>
</div>
);
}
}
export default DropdownComponent;
FAQs
Cloudflare Dropdown Component
The npm package @cloudflare/component-dropdown receives a total of 1,822 weekly downloads. As such, @cloudflare/component-dropdown popularity was classified as popular.
We found that @cloudflare/component-dropdown demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 35 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.