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>
|
||
|
|
`;
|
||
|
|
}
|