rsnext/test/integration/page-config/pages/index.js
2019-07-15 13:54:35 -07:00

10 lines
190 B
JavaScript

import { config as hello } from '../something'
import { config as world } from '../config'
// export const config = 'hello world'
export default () => (
<p>
{hello} {world}
</p>
)