16 lines
521 B
TypeScript
16 lines
521 B
TypeScript
import { useContext } from 'react';
|
|
import * as React from 'react';
|
|
import { DialogContext } from './';
|
|
import { useDeepCompareEffect } from '@/plugins/useDeepCompareEffect';
|
|
|
|
export default ({ children }: { children: React.ReactNode }) => {
|
|
const { setFooter } = useContext(DialogContext);
|
|
|
|
useDeepCompareEffect(() => {
|
|
setFooter(
|
|
<div className={'px-6 py-3 bg-gray-700 flex items-center justify-end space-x-3 rounded-b'}>{children}</div>,
|
|
);
|
|
}, [children]);
|
|
|
|
return null;
|
|
};
|