mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-13 11:40:25 +02:00
14 lines
250 B
TypeScript
14 lines
250 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;
|