c2b10347b1
- Removed rust-service/, c-runtime/, kafka stubs - Generic Store[T] pattern with real tests - Slimmed main.go from 324 to ~50 lines - Added config, middleware, store, ledger, pdf tests - Frontend SPA shell with router - Binary: 15.5MB -> 12MB
14 lines
338 B
JavaScript
14 lines
338 B
JavaScript
// Finance module
|
|
export async function render(container) {
|
|
container.innerHTML = `
|
|
<header class="module-header">
|
|
<h1>Finance</h1>
|
|
<p class="subtitle">Fakturor och ekonomi</p>
|
|
</header>
|
|
<div class="toolbar">
|
|
<button class="btn-primary">+ Ny faktura</button>
|
|
</div>
|
|
<p>Modulen laddas...</p>
|
|
`;
|
|
}
|