Skip to content

Instantly share code, notes, and snippets.

@ajsharp
Last active March 4, 2019 22:06
Show Gist options
  • Save ajsharp/5ee4a2ca9ba5ed4398c7a9b830e64889 to your computer and use it in GitHub Desktop.
Save ajsharp/5ee4a2ca9ba5ed4398c7a9b830e64889 to your computer and use it in GitHub Desktop.
{
"dependencies": {
"react": "^16.8"
}
}
  • /
    • webpack.config.js
    • package.json
    • subproject
      • webpack.config.js
      • package.json
      • sub_index.js
    • components
      • shared
        • CompA.js
import React from 'react'
import CompA from '../components/shared/CompA'
export default () => (
<div>
<CompA />
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment