mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
7 lines
149 B
JavaScript
7 lines
149 B
JavaScript
import React from 'react'
|
|
|
|
export default class MyCoolComponent extends React.Component {
|
|
render() {
|
|
return (<div>too cool for school</div>)
|
|
}
|
|
}
|