8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
export default function Footer(){
|
||
|
return (
|
||
|
<footer>
|
||
|
<p id="madeWith">Made with Blåhaj 🦈</p>
|
||
|
</footer>)
|
||
|
}
|