mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-13 15:53:18 +02:00
Migrate to Mantine v8 and Design Changes (#961)
* mantine v8 migration * various design changes and improvements
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import { Portal as MantinePortal, PortalProps as MantinePortalProps } from '@mantine/core';
|
||||
|
||||
export interface PortalProps extends MantinePortalProps {}
|
||||
|
||||
export const Portal = ({ children, ...props }: PortalProps) => {
|
||||
return <MantinePortal {...props}>{children}</MantinePortal>;
|
||||
};
|
||||
Reference in New Issue
Block a user