import React from 'react'; const name = 'Robby'; function App() { return ( <div> <User name={name} /> </div> ); } function User(props) ...
確定! 回上一頁