Code Monkey home page Code Monkey logo

Comments (3)

mrchief avatar mrchief commented on May 23, 2024

This issue arises when you have multiple copies of react being loaded on the page. Its hard to pinpoint what is causing this without having more details but few common pitfalls are misconfigured webpack/npm dependencies.

E.g., misconfigured externals in webpack:

// bad:  
externals: {
  'react': 'react',
  'react-dom': 'ReactDOM'
}

// good 
externals: {
  'react': 'React',  // main entry point of React starts with capital R
  'react-dom': 'ReactDOM'
}

Another solution would be to delete mode_modules (destroy it completely, including any symlinks) and doing npm install again.

Make sure only one version of React is specified in your dependencies (including dev and peer dependencies).

from react-dropdown-tree-select.

jvgreenaway avatar jvgreenaway commented on May 23, 2024

@mrchief Thank you for your response - you helped fix the problem

Yes it was dependancy issue – I realise I am using React@16 but have a number dependancies that list React@15 in their dependancies. I managed to add a fixed alias to my Webpack configs.

config.resolve.alias.react = path.resolve(__dirname, 'node_modules', 'react')

Through my Googling I come across the recommendation that libraries should not list React in their dependancies but instead should use peerDependancies (devDependancies is fine). Should I create a pull request to do that?

from react-dropdown-tree-select.

mrchief avatar mrchief commented on May 23, 2024

Should I create a pull request to do that?

Sure would love to have a PR on that!

from react-dropdown-tree-select.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.