mirror of
https://github.com/Aviortheking/next-template.git
synced 2025-04-23 19:12:10 +00:00
18 lines
250 B
TypeScript
18 lines
250 B
TypeScript
import React from 'react'
|
|
import '../styl/index.styl'
|
|
|
|
export default class Index extends React.Component {
|
|
|
|
public render() {
|
|
return(
|
|
<>
|
|
<h1>Hello World !</h1>
|
|
<style jsx>{`
|
|
h1
|
|
font-size: 39px
|
|
`}</style>
|
|
</>
|
|
)
|
|
}
|
|
}
|