Skip to content

frontend


Function: default()

default(__namedParameters): Element | null

Defined in: src/components/data/Date.tsx:36

FormattedDate

Displays a formatted date with locale-specific formatting.

Parameters

__namedParameters

FormattedDateProps

Returns

Element | null

Examples

// British format: 12/05/1980
<FormattedDate date="1980-05-12" />
// American format: 5/12/1980
<FormattedDate date="1980-05-12" locale="en-US" />
// Long format: 12 May 1980
<FormattedDate date="1980-05-12" format="long" />