mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-10 10:16:21 +02:00
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
import React from "react";
|
|
|
|
import * as styles from "./Copyright.module.scss";
|
|
|
|
type Props = {
|
|
copyright: string;
|
|
};
|
|
|
|
const Copyright = ({ copyright }: Props) => <div className={styles.copyright}>{copyright}</div>;
|
|
|
|
export default Copyright;
|