import React, { FunctionComponent } from "react"; import { IUrl } from "../data/urls"; import styles from "./Urls.less"; interface IUrlprops { title:string, links:IUrl[] } const Urls: FunctionComponent = (props: IUrlprops) => { return (

{props.title}

); }; export default Urls;