Skip to content

Commit

Permalink
feat: grid with draggable items
Browse files Browse the repository at this point in the history
  • Loading branch information
KatoakDR committed Jun 23, 2024
1 parent 53d3cad commit c05c17c
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions electron/renderer/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ const HomePage: React.FC = (): ReactNode => {
[playCharacter]
);

const accountName = '';
const accountPassword = '';
const accountName = 'zoan333f2p';
const accountPassword = '*h7RNUZJvLEJoEQXhjUsxbR2-KXrH3';
const characterName = 'Muleoak';
const gameCode = 'DR';

Expand Down Expand Up @@ -261,7 +261,18 @@ const HomePage: React.FC = (): ReactNode => {
width: 400,
}}
>
<Grid4 dimensions={{ height: 390, width: 390 }} />
{/* <Grid
dimensions={{ height: 390, width: 390 }}
items={[
{
itemId: '1',
title: 'Title 1',
content: <div>Content 1</div>,
},
]}
/> */}
<Grid4 boundary={{ height: 390, width: 390 }} />
</div>
</div>
);
Expand Down

0 comments on commit c05c17c

Please sign in to comment.