Customer Account UI Extension

In customer Ui Extension,

On path ‘extensions/reward-page/src/ProfileBlockExtension.jsx’, i have following import

import { ProfileBlockWrapper } from "./components/ProfileBlockWrapper";

and ProfileBlockWrapper component is located on ‘extensions/reward-page/src/components/ProfileBlockWrapper.jsx’ which is named exported

But when i try to import this component , i am getting Error that

Could not resolve “./components/ProfileBlockWrapper”

In Customer ui extension , is there any different way to import and export the component ?

Try to add file extension in the import statement.

import { ProfileBlockWrapper } from "./components/ProfileBlockWrapper.jsx";