Skip to content

Commit

Permalink
test: try fixing Babel integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed Aug 3, 2020
1 parent b39ef9a commit 788c0a0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/integration/babel/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// This page is written in flowtype to test Babel's functionality
import * as React from '../test/namespace-exported-react'
import * as React from 'react'
import { Component } from '../test/namespace-exported-react'

type Props = {}

export default class MyComponent extends React.Component<Props> {
export default class MyComponent extends Component<Props> {
render() {
return <div id="text">Test Babel</div>
}
Expand Down

0 comments on commit 788c0a0

Please sign in to comment.