mjfs.us/src/components/Header/index.tsx
2019-09-03 02:07:56 -04:00

22 lines
514 B
TypeScript

import React, { PureComponent, ReactNode } from "react"
import SmallText from "../SmallText"
import "./index.css"
export default class Header extends PureComponent {
public render(): ReactNode {
return (
<div className="header-container">
<h2>Mitchell J. F. Simon</h2>
<SmallText>
Software engineer;&nbsp;
<span style={{ display: "inline-block" }}>
cloud-native web services and clients
</span>
</SmallText>
</div>
)
}
}