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