mirror of
https://github.com/gregberge/loadable-components.git
synced 2026-01-18 15:12:26 +00:00
11 lines
166 B
JavaScript
11 lines
166 B
JavaScript
import React from 'react'
|
|
import Counter from './Counter'
|
|
|
|
const World = () => (
|
|
<React.Fragment>
|
|
<Counter /> World
|
|
</React.Fragment>
|
|
)
|
|
|
|
export default World
|