import { AmityUiKitProvider } from '@amityco/ui-kit';
function CustomPostLikeButton({ onClick, isActive, isDisabled }) {
return (...);
}
function MyApp() {
return (
<AmityUiKitProvider
customComponents={{
PostLikeButton: (props) => <CustomPostLikeButton {...props} />,
anotherComponentId: (props) => <AnotherCustomComponent {...props} />,
}}
>
</AmityUiKitProvider>
);
}