doli-front/src/components/dashboard.js

11 lines
278 B
JavaScript
Raw Normal View History

export function renderDashboard() {
const container = document.createElement('div');
container.className = 'dashboard-container';
container.innerHTML = /*html*/`
<h1>Welcome to the Dashboard</h1>
<p>This is the main dashboard page.</p>
`;
return container;
}