refactor(lib): move Modal from Gaming to AppShell

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Anton Tranelis 2026-01-12 20:57:57 +01:00
parent 4eb782a6f0
commit 5caec3f0f5
3 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import { MapOverlayPage } from '#components/Templates'
/**
* @category Gaming
* @category AppShell
*/
export function Modal({ children }: { children: React.ReactNode }) {
return (

View File

@ -2,4 +2,5 @@ export * from './AppShell'
export { SideBar } from './SideBar'
export { Content } from './Content'
export { InfoRedirect } from './InfoRedirect'
export { Modal } from './Modal'
export { default as SVG } from 'react-inlinesvg'

View File

@ -1,2 +1 @@
export { Modal } from './Modal'
export { Quests } from './Quests'