Question 60 of 10060%
60
In a React project configured to compile JSX, which import correctly loads both exports from Greeting.jsx into App.jsx?
// Greeting.jsx
export const subtitle = "Welcome back";
export default function Greeting() {
return <h1>Hello, Ada!</h1>;
}
// App.jsx
// Add the import here
export default function App() {
return (
<main>
<Greeting />
<p>{subtitle}</p>
</main>
);
}
60/100