Skip to main content

TileContent

Type Script definition for the TileContent class:

interface TileContent {
contentTitle?: string;
footer?: string;
contents: Array<{
	title?: string;
	content: string;
}>
}

Below is the graphical representation for TileContent with two contents in it when it renders.

contentTitle

title 1

title 2

content 1

content 2

footer