Skip to content
This repository has been archived by the owner on Sep 7, 2021. It is now read-only.

Module not found: Can't resolve 'react/lib/ReactComponentTreeHook' #61

Open
saulojoab opened this issue Mar 10, 2019 · 0 comments
Open

Comments

@saulojoab
Copy link

saulojoab commented Mar 10, 2019

Hey, so...

I created a new project with:
create-react-app example
Then installed ReactJS-AdminLTE with:
npm install adminlte-reactjs
Then, I went into my App.js and imported an InfoTile and used it. This is my code:

import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import InfoTile from 'adminlte-reactjs';

class App extends Component {
  render() {
    return (
      <div className="App">
        <InfoTile  
           width ={3}
           content = '' 
           icon = 'fa-envelope-o' 
           stats = '1,410' 
           subject = 'Messages' 
           theme = 'bg-aqua' 
      />
      </div>
    );
  }
}

export default App;

Everything seems fine. However, when I run npm start, I get this:
image

./node_modules/adminlte-reactjs/node_modules/react-dom/lib/ReactDOMUnknownPropertyHook.js
Module not found: Can't resolve 'react/lib/ReactComponentTreeHook' in 'C:\Users\Saulo Joab\Desktop\Random Files\Projetos\React\smarttramo\node_modules\adminlte-reactjs\node_modules\react-dom\lib'

Did I do something wrong? I tried really hard to solve that error but nothing worked.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant