import * as React from "react"; import { PlatformProps } from "../../../shared/types"; import withPlatform from "../../platform/withPlatform"; type Props = {} & PlatformProps; function Clock(props: Props) { return ( ); } export default withPlatform(Clock);