mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
15 lines
302 B
JavaScript
15 lines
302 B
JavaScript
import React, { Component, Fragment } from 'react'
|
|
import { Button } from 'carbon-components-react'
|
|
|
|
import '../static/myCustomTheme.scss'
|
|
|
|
export default class DemoApp extends Component {
|
|
render () {
|
|
return (
|
|
<Fragment>
|
|
<Button>Hello, world!</Button>
|
|
</Fragment>
|
|
)
|
|
}
|
|
}
|