15 lines
284 B
TypeScript
15 lines
284 B
TypeScript
import { h } from "preact";
|
|
|
|
export function LogoHeader() {
|
|
return <div style={{
|
|
display: 'flex',
|
|
justifyContent: 'space-around',
|
|
margin: '2em',
|
|
}}>
|
|
<img style={{
|
|
width: 150,
|
|
height: 70,
|
|
}} src="/static/img/logo-2021.svg" width="150" />
|
|
</div>
|
|
|
|
} |