7 lines
104 B
JavaScript

let foo = 'hello';
export const Component = () => {
foo = 'goodbye';
return <span>{foo}</span>;
};