79133820

Date: 2024-10-28 14:29:28
Score: 1
Natty:
Report link

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
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: aw_santo