interface Props { link: string; text: string; } function LinkList(props: Props) { return (
  • {props.text}
  • ); } export default LinkList;