📅  最后修改于: 2022-03-11 15:03:42.142000             🧑  作者: Mango
class Random extends React.Component {
render() {
// First, some logic that must happen
// before rendering:
const n = Math.floor(Math.random() * 10 + 1);
// Next, a return statement
// using that logic:
return The number is {n}!
;
}
}