Files
WRNexusJS/examples/i18n-showcase/app/layouts/document.wrn
Clintchiz 586a6db8ff
Quality / quality (ubuntu-latest) (push) Failing after 21s
Quality / quality (windows-latest) (push) Canceled after 0s
release: WRNexusJS 0.8.0
2026-08-02 23:18:51 +05:30

15 lines
183 B
Plaintext

layout Document {
props {
language: string = "en"
}
view {
<html>
<head></head>
<body>
<div id="app"><slot /></div>
</body>
</html>
}
}