diff --git a/apps/movex-docs/modules/examples/modules/chat/movex/actions.ts b/apps/movex-docs/modules/examples/modules/chat/movex/actions.ts index d5cc7036..1a52ba58 100644 --- a/apps/movex-docs/modules/examples/modules/chat/movex/actions.ts +++ b/apps/movex-docs/modules/examples/modules/chat/movex/actions.ts @@ -1,4 +1,4 @@ -import { Action } from 'movex'; +import { Action } from 'movex-core-util'; import { Color, ParticipantId } from './state'; export type ChatActions = diff --git a/apps/movex-docs/modules/examples/modules/rps/movex/actions.ts b/apps/movex-docs/modules/examples/modules/rps/movex/actions.ts index 9e5a6539..dc450c22 100644 --- a/apps/movex-docs/modules/examples/modules/rps/movex/actions.ts +++ b/apps/movex-docs/modules/examples/modules/rps/movex/actions.ts @@ -1,4 +1,4 @@ -import { Action } from 'movex'; +import { Action } from 'movex-core-util'; import { PlayerId, PlayerLabel, RPS } from './types'; export type Actions = diff --git a/apps/movex-docs/modules/home/game/Game.tsx b/apps/movex-docs/modules/home/game/Game.tsx index 6cefc0b5..6c11943d 100644 --- a/apps/movex-docs/modules/home/game/Game.tsx +++ b/apps/movex-docs/modules/home/game/Game.tsx @@ -1,4 +1,3 @@ -import { getRandomInt } from 'movex-core-util'; import { useMemo } from 'react'; const bkgColor = '#ffc300'; @@ -7,9 +6,14 @@ export const Game = () => { const gameId = useMemo(() => String(Math.random()).slice(-8), []); return ( -
+
{ >

Try Movex with a Game of @@ -33,9 +39,11 @@ export const Game = () => {

-
+
{ }} >