Skip to content

Commit fd37fbc

Browse files
committed
[playground] fixed dev
1 parent 7f5b3d9 commit fd37fbc

File tree

8 files changed

+25
-24
lines changed

8 files changed

+25
-24
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,6 @@
7676
[submodule "cases/semantic-pdf-parser"]
7777
path = cases/semantic-pdf-parser
7878
url = ./cases/semantic-pdf-parser
79+
[submodule "cases/hand-future-frontend"]
80+
path = cases/xieshou-frontend
81+
url = [email protected]:mark-freelance/hand-future-frontend.git

apps/playground

cases/xieshou-frontend

Submodule xieshou-frontend added at 0c683d2
Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
1-
import clsx from "clsx";
2-
import { HTMLProps } from "react";
3-
41
// @transform-path
5-
import CsMagicBlackLogoSvg from "assets/branding/neurora/neurora_logo_black_trans_1280.svg";
6-
import { LOGO_SIZE_LG } from "@/config";
2+
import CsMagicBlackLogoSvg from "@assets/branding/neurora/neurora_logo_black_trans_1280.svg"
3+
import clsx from "clsx"
4+
import { HTMLProps } from "react"
5+
6+
import { LOGO_SIZE_LG } from "@/config"
77

8-
export const CompanyLogo = ({
9-
className,
10-
...props
11-
}: HTMLProps<SVGSVGElement>) => (
8+
export const CompanyLogo = ({ className, ...props }: HTMLProps<SVGSVGElement>) => (
129
<CsMagicBlackLogoSvg
1310
className={clsx("", className)}
1411
width={LOGO_SIZE_LG}
1512
height={LOGO_SIZE_LG}
1613
{...props}
1714
/>
18-
);
15+
)

packages/frontend/react/src/components/navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client"
22

3-
import DiagonalSeparatorSVG from "assets/others/diagnoal-separator.svg"
3+
import DiagonalSeparatorSVG from "@assets/others/diagnoal-separator.svg"
44
import { clsx } from "clsx"
55
import { useSetAtom } from "jotai"
66
import Link from "next/link"
Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
export * from "src/store/jotai.types"
2-
3-
export * from "src/store/dev.atom"
4-
export * from "src/store/pusher.atom"
5-
export * from "src/store/sms.atom"
6-
export * from "src/store/transport.atom"
7-
export * from "src/store/tv.atom"
8-
export * from "src/store/ui.atom"
9-
export * from "src/store/user.atom"
10-
export * from "src/store/visualization.atom"
1+
export * from "./jotai.types"
2+
export * from "./dev.atom"
3+
export * from "./pusher.atom"
4+
export * from "./sms.atom"
5+
export * from "./transport.atom"
6+
export * from "./tv.atom"
7+
export * from "./ui.atom"
8+
export * from "./user.atom"
9+
export * from "./visualization.atom"

packages/frontend/react/src/store/tv.atom.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import { atom } from "jotai"
2-
import { uiScreenAtom } from "src/store/ui.atom"
32

43
import { IDimension } from "@cs-magic/common/schema/ui"
54

5+
import { uiScreenAtom } from "./ui.atom"
6+
67
// import { IDimension } from "../ui/schema"
78
// import { uiScreenAtom } from "../ui/store"
89

packages/frontend/react/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"./public/*"
1414
],
1515
"@assets/*": [
16-
"../../assets/*"
16+
"../../../assets/*"
1717
]
1818
}
1919
},

0 commit comments

Comments
 (0)