Skip to content

Commit

Permalink
swap board position (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
hishiwat authored Sep 11, 2024
1 parent 8fbc7d6 commit 51ba9ae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,23 +85,23 @@ export const CheckpointProblem: React.FC<CheckpointProblemProps> = ({
<Flex gap="6" w="100%">
<VStack spacing="10">
<Box>赤色にハイライトされている行における盤面を作成してください。</Box>
<Box>青色のハイライト時点の実行結果</Box>
<Box>赤色のハイライト時点の実行結果</Box>
<Box>
<TurtleGraphics
ref={turtleGraphicsRef}
beforeTraceItem={beforeCheckpointTraceItem}
currentTraceItem={currentCheckpointTraceItem}
isEnableOperation={false}
isEnableOperation={true}
problem={problem}
/>
</Box>
<Box>赤色のハイライト時点の実行結果</Box>
<Box>青色のハイライト時点の実行結果</Box>
<Box>
<TurtleGraphics
ref={turtleGraphicsRef}
beforeTraceItem={beforeCheckpointTraceItem}
currentTraceItem={currentCheckpointTraceItem}
isEnableOperation={true}
isEnableOperation={false}
problem={problem}
/>
</Box>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,23 +73,23 @@ export const StepProblem: React.FC<StepProblemProps> = ({
<Flex gap="6" w="100%">
<VStack spacing="10">
<Box>赤色にハイライトされている行における盤面を作成してください。</Box>
<Box>青色のハイライト時点の実行結果</Box>
<Box>赤色のハイライト時点の実行結果</Box>
<Box>
<TurtleGraphics
ref={turtleGraphicsRef}
beforeTraceItem={beforeCheckpointTraceItem}
currentTraceItem={currentCheckpointTraceItem}
isEnableOperation={false}
isEnableOperation={true}
problem={problem}
/>
</Box>
<Box>赤色のハイライト時点の実行結果</Box>
<Box>青色のハイライト時点の実行結果</Box>
<Box>
<TurtleGraphics
ref={turtleGraphicsRef}
beforeTraceItem={beforeCheckpointTraceItem}
currentTraceItem={currentCheckpointTraceItem}
isEnableOperation={true}
isEnableOperation={false}
problem={problem}
/>
</Box>
Expand Down

0 comments on commit 51ba9ae

Please sign in to comment.