Skip to content

Commit

Permalink
feat(Desktop): deprecate component
Browse files Browse the repository at this point in the history
  • Loading branch information
mainframev authored and DSil committed Oct 2, 2023
1 parent 24c834c commit 9102bfb
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
@@ -1,6 +1,6 @@
import * as React from "react";

import { render } from "../../test-utils";
import { render } from "../../../test-utils";
import Desktop from "..";

describe("Desktop", () => {
Expand Down
Expand Up @@ -2,7 +2,7 @@

import * as React from "react";

import Hide from "../Hide";
import Hide from "../../Hide";
import type { Props } from "./types";

const Desktop = ({ children }: Props) => (
Expand Down
Expand Up @@ -3,7 +3,7 @@

import type * as React from "react";

import type * as Common from "../common/types";
import type * as Common from "../../common/types";

export interface Props extends Common.Globals {
readonly children: React.ReactNode;
Expand Down

0 comments on commit 9102bfb

Please sign in to comment.