import React from "react"; export interface Link { name: string; url: string; } interface Props { links: Link[]; } export const Links: React.FC = ({ links }) => { return (
CSC Logo

@uwcsclub

); };