web.lib.components.header.code-quarkus-header.tsx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-quarkus Show documentation
Show all versions of code-quarkus Show documentation
Customize a Web Interface to generate Quarkus starter projects.
import React from 'react';
import './code-quarkus-header.scss';
import { createLinkTracker, useAnalytics } from '../../core/analytics';
import { StreamPicker, StreamPickerProps } from './stream-picker';
import defaultQuarkusLogo from '../media/quarkus-logo.svg';
export interface CodeQuarkusHeaderProps {
streamProps: StreamPickerProps;
quarkusLogo?: string;
}
export interface CompanyHeaderProps extends CodeQuarkusHeaderProps {
children: JSX.Element;
}
export function CompanyHeader(props: CompanyHeaderProps) {
const analytics = useAnalytics();
const linkTracker = createLinkTracker(analytics, 'Header');
return (
);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy