ChannelListUI is not working - uikit v3

const ChannelListProvider = dynamic(() => import(“@sendbird/uikit-react/ChannelList/context”), {
ssr: false,
});
const ChannelListUI = dynamic(() => import(“@sendbird/uikit-react/ChannelList/components/ChannelListUI”), {
ssr: false,
});

 <ChannelListProvider>
          <ChannelListUI/>
 </ChannelListProvider>

Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it’s defined in, or you might have mixed up default and named imports.

Check the render method of ForwardRef(LoadableComponent).

can you see if this example works?
I recommend moving all the Sendbird-components into a component and dynamic import this specific component

p.s. I have removed the appID, please use your’s