6 return (
7 <div className="App">
8 <header className="App-header">
9 <img src={logo} className="App-logo" alt="logo" alt="logo_" />10 <Home title="Welcome to DeepSource Enterprise" isHero />
11 <a
12 className="App-link"
14 <Hero
15 className="bg"
16 title="DeepSource is how you write clean and secure code"
17 title=""18 />
19 <ul>
20 {features.map((feature) => (
14 <Hero
15 className="bg"
16 title="DeepSource is how you write clean and secure code"
17 title=""18 />
19 <ul>
20 {features.map((feature) => (
Creating JSX elements with duplicate props can cause unexpected behavior in your application. From the duplicates properties, the last value will be honored by React framework. This may cause your application to have undesired behavior.
<Hello name="John" name="John" />;
<Hello firstname="John" lastname="Doe" />;