19 lines
406 B
React
19 lines
406 B
React
import React from 'react';
|
|
|
|
const Static = props => {
|
|
return (
|
|
<>
|
|
<header>
|
|
<h1 className='text centered'>Credits</h1>
|
|
</header>
|
|
<h2>MERN-template</h2>
|
|
<p>The <a href='https://github.com/krgamestudios/MERN-template'>MERN-template</a> developed by Kayne Ruse, KR Game Studios</p>
|
|
<br />
|
|
<p>Additional programming by Keith "prox" Campbell Jr</p>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Static;
|
|
|