frontend/smart-hut/src/components/Footer.js
2020-05-12 15:18:33 +02:00

10 lines
134 B
JavaScript

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