This commit is contained in:
2024-09-05 19:33:30 -04:00
parent 51da011d12
commit 7f6116450f
187 changed files with 81911 additions and 388 deletions

View File

@@ -0,0 +1,14 @@
import React from 'react';
import { MemoryRouter } from 'react-router-dom';
import Lobby from './Lobby';
export default {
title: 'Components/Lobby',
component: Lobby,
};
export const Default = () => (
<MemoryRouter>
<Lobby onJoinSession={() => {}} />
</MemoryRouter>
);