You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
285 B
React

1 year ago
// Strict Mode
"use strict";
// Styles
import styles from "./copyrightCard.module.css";
// Copyright Card
export default function CopyrightCard () {
return (
<div className = { styles.copyrightCard }>
<h6>Copyright - Shooty Arena</h6>
</div>
);
};