mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-10 22:55:16 -05:00
* improvement: panel tabs handler on click * fix: output break words * feat: keyboard navigation; improvement: SEO/GEO; refactor: file structure, unused fonts; fix: chat streaming, notification stack * feat: unresolved value handling on error; fix: layout refresh; refactor: delete old panel * refactor: control bar delete; improvement: workflow constants; fix: clear notifications keyboard shortcut * update developers count * fixed relative imports --------- Co-authored-by: waleed <walif6@gmail.com>
10 lines
365 B
TypeScript
10 lines
365 B
TypeScript
import TemplatesLayoutClient from '@/app/templates/layout-client'
|
|
|
|
/**
|
|
* Templates layout - server component wrapper for client layout.
|
|
* Redirect logic is handled by individual pages to preserve paths.
|
|
*/
|
|
export default function TemplatesLayout({ children }: { children: React.ReactNode }) {
|
|
return <TemplatesLayoutClient>{children}</TemplatesLayoutClient>
|
|
}
|