19 lines
466 B
TypeScript
19 lines
466 B
TypeScript
import React from "react";
|
|
import { TooltipStyles } from "./tooltip";
|
|
import { PopoverStyles } from "./popover";
|
|
import { CommentThreadPopoverStyles } from "./commentThreadPopovers";
|
|
import { UppyStyles } from "./uppy";
|
|
import { PortalStyles } from "./portals";
|
|
|
|
export default function GlobalStyles() {
|
|
return (
|
|
<>
|
|
<TooltipStyles />
|
|
<PopoverStyles />
|
|
<CommentThreadPopoverStyles />
|
|
<PortalStyles />
|
|
<UppyStyles />
|
|
</>
|
|
);
|
|
}
|