DataJPA_V2/src/components/Header/index.js

12 lines
177 B
JavaScript
Raw Permalink Normal View History

2020-05-17 18:12:36 +07:00
import React from 'react';
import { Container } from './styles';
export default function Header() {
return (
<Container>
<h1>Rocketfy</h1>
</Container>
);
}