28 lines
731 B
TypeScript
28 lines
731 B
TypeScript
|
|
import type React from 'react'
|
||
|
|
import PlatformIcon from './PlatformIcon'
|
||
|
|
import {
|
||
|
|
PublicDemoButton,
|
||
|
|
PublicHeaderBar,
|
||
|
|
PublicLanguageSelector,
|
||
|
|
PublicLogo,
|
||
|
|
PublicMobileMenu,
|
||
|
|
PublicNav,
|
||
|
|
PublicThemeToggle,
|
||
|
|
} from '@/components/publicSite'
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Katalogda yer alan ama derlenmis custom component listesinde bulunmayan
|
||
|
|
* dugumler. Kanvas bunlari dogrudan cizer, uretilen kod da ayni adla cagirir;
|
||
|
|
* iki taraf da bu sozlukten beslendigi icin tasarim ve calisma zamani ayrisamaz.
|
||
|
|
*/
|
||
|
|
export const RUNTIME_NODE_COMPONENTS = {
|
||
|
|
PlatformIcon,
|
||
|
|
PublicHeaderBar,
|
||
|
|
PublicLogo,
|
||
|
|
PublicLanguageSelector,
|
||
|
|
PublicThemeToggle,
|
||
|
|
PublicDemoButton,
|
||
|
|
PublicNav,
|
||
|
|
PublicMobileMenu,
|
||
|
|
} as Record<string, React.ComponentType<never>>
|