import React from "react"; import * as styles from "./Copyright.module.scss"; type Props = { copyright: string; }; const Copyright = ({ copyright }: Props) =>
{copyright}
; export default Copyright;