Fix case-sensitive path

This commit is contained in:
Thomas Nordquist
2019-04-03 18:27:38 +02:00
parent 094d795b39
commit d175195dd5
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import * as React from 'react'
import ShowText from './ShowText'
import Mouse from './Mouse';
(window as any).demo = {}
export default function render(props: any) {
return (
<span>
<ShowText />
<Mouse />
</span>
)
}