Update App.tsx

This commit is contained in:
Lorraxs 2024-01-17 17:17:58 +07:00
parent 01155f838d
commit 5f29a7533b

View File

@ -38,6 +38,7 @@ function App() {
{Object.keys(AppActions).map((action) => {
return (
<AppActionHook
key={action}
action={action as keyof typeof AppActions}
></AppActionHook>
);
@ -45,8 +46,11 @@ function App() {
</Box>
{show && (
<Box
width={'100%'}
height={'100%'}
width={'100vw'}
height={'100vh'}
position='absolute'
top={0}
left={0}
display='flex'
justifyContent='center'
alignItems='center'