import styled from "@emotion/styled"; import React from "react"; import withPlatform, { PlatformProps } from "./platform/withPlatform"; type Props = {} & PlatformProps; function Header(props: Props) { return ; } export default withPlatform(Header); const Container = styled.div` position: absolute; display: flex; top: 0; width: 100%; min-height: 40px; background-color: #ff0000; -webkit-app-region: drag; z-index: 999999; `;