import * as React from 'react'; import './style.css'; import Toast from './Toast'; export default function App() { return ( <div> <div className="container"> <h1>Toasts </h1> <span>ACEPREP</span> <p>Read the description to start solving the problem</p> </div> <Toast /> </div> ); }
Console