You are returning an empty fragment <></> from your App.jsx, I see you have imported DigitalClock but you are not using it.
change App.jsx code to:
import DigitalClock from "./DigitalClock";
function App(){
return <DigitalClock />;
};
export default App