I'm new to React (especially Typescript) and I was wondering how to pass these interface props correctly to this Navbar component in my main App?
interface HeaderResponsiveProps {
links: { link: string; label: string }[];
}
export default function Navbar({ links }: HeaderResponsiveProps) {
import Navbar from './components/Navbar'
export default function App() {
return (
<Navbar links={???}/>
);
}