When using ES6 imports export default Sidebar, the exported module is of the format {"default" : Sidebar}.
The import statement import * from Sidebar handles this assignment for you, however, you have to do the require("./components/Sidebar").default conversion yourself.
If you want to avoid that, use module.exports instead of export default.