0
import './App.css';
import TodoList from './components/TodoList';
import 'bootstrap/dist/css/bootstrap.min.css'
function App(){
    return(
        <div className="my-todo-app">
            <TodoList/>
            
        </div>
    );
}
export default App;

It showed like this error.

./src/App.js Module not found: Can't resolve 'bootstrap/dist/css/bootstrap.min.css' in 'E:\React Work\assesment\my-todo-app\src'

How Do I solve this problem?

1

1 Answer 1

1

Please refer to this blog to know about how to add bootstrap in react, "How a designer can start React JS"

Blog Link:- https://blog.yudiz.com/how-a-designer-can-start-react-js/

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.