12 lines
204 B
JavaScript
12 lines
204 B
JavaScript
function Component(props) {
|
|
const count = new MaybeMutable();
|
|
return (
|
|
<View>
|
|
<View>
|
|
{<span>Text</span>}
|
|
{<span>{maybeMutate(count)}</span>}
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|