mirror of
https://github.com/mitchell/mjfs.us.git
synced 2025-07-01 00:36:09 +00:00
10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
import React, { PureComponent, ReactNode } from "react"
|
|
|
|
import "./index.css"
|
|
|
|
export default class SmallText extends PureComponent {
|
|
public render(): ReactNode {
|
|
return <div className="small-text">{this.props.children}</div>
|
|
}
|
|
}
|