Loading...
You need to pass all your custom components into AmityUiKitProvider using customComponents prop.
AmityUiKitProvider
customComponents
import { AmityUiKitProvider } from '@amityco/ui-kit'; function CustomPostLikeButton({ onClick, isActive, isDisabled }) { return (...); } function MyApp() { return ( <AmityUiKitProvider customComponents={{ PostLikeButton: CustomPostLikeButton, anotherComponentId: AnotherCustomComponent, }} > </AmityUiKitProvider> ); }