mirror of
https://github.com/Aviortheking/next-template.git
synced 2025-04-22 10:42:10 +00:00
21 lines
291 B
TypeScript
21 lines
291 B
TypeScript
import React from 'react'
|
|
|
|
interface Props {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export default class HelloWorld extends React.Component<Props> {
|
|
|
|
public render() {
|
|
return (
|
|
<>
|
|
<h1>{this.props.children}</h1>
|
|
<style jsx>{`
|
|
h1
|
|
font-weight 700
|
|
`}</style>
|
|
</>
|
|
)
|
|
}
|
|
}
|