feat(WEB-128): desktop and mobile initial wireframe implemented
This commit is contained in:
6
types/components/myPages/stay.ts
Normal file
6
types/components/myPages/stay.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export type StayProps = {
|
||||
dateArrive: Date
|
||||
dateDepart: Date
|
||||
guests: number
|
||||
hotel: string
|
||||
}
|
||||
7
types/components/myPages/title.ts
Normal file
7
types/components/myPages/title.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
type HeadingLevel = "h1" | "h2" | "h3" | "h4" | "h5" | "h6"
|
||||
|
||||
export interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement> {
|
||||
as?: HeadingLevel
|
||||
level?: HeadingLevel
|
||||
uppercase?: boolean
|
||||
}
|
||||
10
types/requests/myPages/logo.ts
Normal file
10
types/requests/myPages/logo.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import type { Edges } from "../utils/edges"
|
||||
import type { Image } from "../../image"
|
||||
|
||||
export type LogoQueryData = {
|
||||
all_header: {
|
||||
items: {
|
||||
logoConnection: Edges<Image>
|
||||
}[]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user