mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2026-01-16 09:54:40 +00:00
21 lines
493 B
TypeScript
21 lines
493 B
TypeScript
// eslint-disable-next-line import-x/no-unassigned-import
|
|
import './css'
|
|
|
|
export * from './Components/Map'
|
|
export * from './Components/AppShell'
|
|
export * from './Components/Auth'
|
|
export * from './Components/Gaming'
|
|
export * from './Components/Templates'
|
|
export * from './Components/Input'
|
|
export * from './Components/Item'
|
|
export * from './Components/Onboarding'
|
|
export * from './Components/Profile'
|
|
|
|
declare global {
|
|
interface Window {
|
|
my_modal_3: {
|
|
showModal(): void
|
|
}
|
|
}
|
|
}
|