createHeader(props: HeaderProps): string
Create header HTML string
Example 1
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' } });
props: HeaderProps
Header configuration