Skip to content

Instantly share code, notes, and snippets.

View VedantGadge's full-sized avatar

Vedant Gadge VedantGadge

View GitHub Profile
@VedantGadge
VedantGadge / App.js
Created June 3, 2025 08:18
Here's the solution code to both the frontend and backend task.
import FactButton from './factButton';
import './App.css';
import PrimeNumber from './primeNumber';
function App() {
return (
<div className="App ">
<FactButton/>
<PrimeNumber/>
</div>