function createHeader
createHeader(props: HeaderProps): string

Create header HTML string

Examples

Example 1

const html = createHeader({ logo: { src: '/logo.svg', alt: 'MyApp', appName: 'MyApp' }, nav: [ { label: 'Dashboard', href: '/dashboard', active: true }, { label: 'Settings', href: '/settings' } ], user: { name: 'John', email: 'john@example.com' }, language: { current: 'en' } });

Parameters

Header configuration

Return Type

string

HTML string for the header

Usage

import { createHeader } from ".";