7 lines
188 B
TypeScript
7 lines
188 B
TypeScript
|
import Portal from './Portal';
|
||
|
import type { PortalProps } from './Portal';
|
||
|
import { inlineMock } from './mock';
|
||
|
export type { PortalProps };
|
||
|
export { inlineMock };
|
||
|
export default Portal;
|