14 lines
347 B
TypeScript
14 lines
347 B
TypeScript
import LayoutClient from "./layoutClient";
|
|
|
|
export default function CalculatorsLayout({children} : {children:React.ReactNode}){
|
|
return(
|
|
<>
|
|
<html data-theme="dark">
|
|
<body>
|
|
<LayoutClient>{children}</LayoutClient>
|
|
</body>
|
|
</html>
|
|
|
|
</>
|
|
)
|
|
} |