next-template/pages/index.tsx
2020-03-04 16:23:49 +01:00

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>
</>
)
}
}