Changing Layout and adding new things (input, routes etc.)

This commit is contained in:
2026-03-29 22:56:23 +05:30
parent 12ea537b79
commit 73e6bb7dd8
10 changed files with 117 additions and 33 deletions

View File

@@ -0,0 +1,9 @@
import LayoutClient from "./layoutClient";
export default function CalculatorsLayout({children} : {children:React.ReactNode}){
return(
<>
<LayoutClient>{children}</LayoutClient>
</>
)
}