2021-09-10 18:00:31 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { ComponentProps } from 'react';
|
|
|
|
import React from 'react';
|
2021-09-10 18:00:31 +00:00
|
|
|
|
|
|
|
import { SmartReactionPicker } from './ReactionPicker';
|
|
|
|
|
|
|
|
export const renderReactionPicker = (
|
|
|
|
props: ComponentProps<typeof SmartReactionPicker>
|
|
|
|
): JSX.Element => <SmartReactionPicker {...props} />;
|