我是从Ocaml开始的,其中一个问题是:如何简化这段代码
如果f(x)<然后是f(x)否则h
答案 0 :(得分:2)
你可以写这个
export class Demo extends React.Component<DemoProps, any> {
private foo: number;
constructor(props: DemoProps) {
super(props);
}
scriptContents(){
//contents of the script in here
}
render() {
return (
<html>
<head>
<script>
{this.scriptContents()}
</script>
</head>
<body>
<div id="root">
(hello world)
</div>
<div>
<progress id="hot-reload-progress-bar" value="100" max="100"></progress>
</div>
</body>
</html>
)
}
}
(我希望这不是学校作业。最好自己解决这些问题。)