booleanhunter / ReactJS-AdminLTE

ReactJS version of the original AdminLTE dashboard (EXPERIMENTAL)- https://github.com/almasaeed2010/AdminLTE
Other
2.35k stars 796 forks source link

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

Open saulojoab opened 5 years ago

saulojoab commented 5 years ago

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.