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

10 lines
134 B
JavaScript

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