import React from 'react'
import './sidebar.css'
import logo from './images/'
const sidebar = () => {
return (
<div className='sideBar grid'>
<div className='logoDiv flex'>
<img src='' alt='Image Name'/>
<h2>xyz</h2>
</div>
</div>
)
}
export default sidebar
When trying to use images from the assets folder, I encountered an error message stating that the module was not found.
ERROR in ./src/components/SideBar Section/sidebar.jsx 8:0-32 Module not found: Error: Can't resolve '../assets/' in 'C:\Users\Sakshi\OneDrive\Desktop\dashboard\src\components\SideBar Section'