11 lines
278 B
JavaScript
11 lines
278 B
JavaScript
|
|
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;
|
||
|
|
}
|