frontend/smart-hut/src/components/Footer.js

10 lines
150 B
JavaScript

import React from 'react';
export default function Footer() {
return(
<div>
<p>This is the footer</p>
</div>
)
}