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

10 lines
134 B
JavaScript
Raw Normal View History

2020-05-12 13:18:33 +00:00
import React from 'react';
export default function Footer() {
2020-03-23 20:24:17 +00:00
return (
<div>
<p>This is the footer</p>
</div>
);
}