Question: import React from 'react'; function Fruit () { return ( This is an + Apple Fruit; ); } export default Fruit; The function
import React from 'react';
function Fruit () {
return (
"This is an " + " Apple Fruit";
);
}
export default Fruit;
The function is rendered with output as:
|
"This is an " + " Apple Fruit";
| ||
|
"This is an Apple Fruit";
| ||
|
This is an Apple Fruit
|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
