18 lines
552 B
TypeScript
18 lines
552 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-slate-700 flex items-center justify-end space-x-3 rounded-b'}>
|
|
{children}
|
|
</div>,
|
|
);
|
|
}, [children]);
|
|
|
|
return null;
|
|
};
|