< 我在React实践中找到了这个组件,但是我不知道确切的行为是什么。 例如 const App = () => { return ( <React.StrictMode> <div id="cool-attribute"> <h1>Welcome to the Jungle!</h1> <SearchParams /> </div> </React.StrictMode> ); }; 我在React实践中找到了这个组件,但是我不知道确切的行为是什么。例如const App =()=> {return( ...

问题描述 投票:0回答:1
我在React实践中找到了这个组件,但是我不知道确切的行为是什么。

例如

const App = () => { return ( <React.StrictMode> <div id="cool-attribute"> <h1>Welcome to the Jungle!</h1> <SearchParams /> </div> </React.StrictMode> ); };

我在React实践中找到了这个组件,但是我不知道确切的行为是什么。例如const App =()=> {return(

...

javascript reactjs components jsx react-component
1个回答
0
投票
首先您需要了解的是<>的实际含义。
© www.soinside.com 2019 - 2024. All rights reserved.