Created
December 16, 2019 11:07
-
-
Save borlaym/1314ecaf8fc3fc0341fc39b30c94e60c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type FiveCardModular = { | |
name: 'FiveCardModular', | |
} | |
type FourCardModular = { | |
name: 'FourCardModular', | |
} | |
type HorizontalList = { | |
name: 'HorizontalList', | |
header: TopHeader, | |
}; | |
/////// | |
type TopHeader = { | |
type: 'TopHeader', | |
title: string, | |
useLogo?: boolean, | |
links?: Array<{ | |
url: string, | |
text: string | |
}> | |
} |
vtanyi-gmg
commented
Dec 16, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment