mirror of
https://github.com/mitchell/mjfs.us.git
synced 2025-07-01 00:36:09 +00:00
22 lines
514 B
TypeScript
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;
|
|
<span style={{ display: "inline-block" }}>
|
|
cloud-native web services and clients
|
|
</span>
|
|
</SmallText>
|
|
</div>
|
|
)
|
|
}
|
|
}
|