import logoDark from "./logo-dark.svg"; import logoLight from "./logo-light.svg"; import styles from "./welcome.module.css"; export function Welcome() { return ( What's next? {resources.map(({ href, text, icon }) => ( {icon} {text} ))} ); } const resources = [ { href: "https://reactrouter.com/docs", text: "React Router Docs", icon: ( Welcome ), }, { href: "https://rmx.as/discord", text: "Join Discord", icon: ( Welcome ), }, ];
What's next?