devanSAGA PRO
12345678910111213141516171819202122export const App = () => {
return (
<div className="wrapper">
<div className="content">
<img
className="logo"
src="https://sandpack.frontend.fyi/img/fefyi.svg"
/>
<h1 className="title">
Time to draw some rectangles
</h1>
<a
href="https://www.frontend.fyi/playgrounds"
target="_blank"
className="cta"
>
Frontend.fyi Playgrounds
</a>
</div>
</div>
);
}