mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-12-07 02:37:00 +01:00
refactor(starter): upgrade to new version of gatsby
This commit is contained in:
13
src/components/Sidebar/Copyright/Copyright.tsx
Normal file
13
src/components/Sidebar/Copyright/Copyright.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from "react";
|
||||
|
||||
import styles from "./Copyright.module.scss";
|
||||
|
||||
type Props = {
|
||||
copyright: string;
|
||||
};
|
||||
|
||||
const Copyright = ({ copyright }: Props) => (
|
||||
<div className={styles.copyright}>{copyright}</div>
|
||||
);
|
||||
|
||||
export default Copyright;
|
||||
Reference in New Issue
Block a user