Text
The <ShowcaseText>
component can be used to showcase text entries which link to their respective pages.
Import
Usage
Specify a list of text entries to display using the entries
prop.
Each entry should at least specify a title and link to the respective page while an optional description can be provided.
The above code generates the following on the page:
Props
The <ShowcaseText>
component accepts the following props:
entries
required
type: ShowcaseTextCardProps[]
The list of text entries to display. See the Usage section for an example and the entry definition for more details.
Entry
Each text entry should be an object with the following properties:
href
required
type: string
The link to the page the text entry refers to.
title
required
type: string
A title for the text entry.
description
type: string
An optional description for the text entry.