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
15 lines
384 B
JavaScript
15 lines
384 B
JavaScript
// Sales module
|
|
export async function render(container) {
|
|
container.innerHTML = `
|
|
<header class="module-header">
|
|
<h1>Sales</h1>
|
|
<p class="subtitle">Deals och offert</p>
|
|
</header>
|
|
<div class="toolbar">
|
|
<button class="btn-primary">+ Ny deal</button>
|
|
<button class="btn-secondary">+ Ny offert</button>
|
|
</div>
|
|
<p>Modulen laddas...</p>
|
|
`;
|
|
}
|