Denys Konovalov
13dde42eb0
- [x] Update auf Static CMS v2.0 - [x] aktualisierte Shortcodes (schließt #225) - [x] aktualisierte Previews (schließt #181) - Ordnerunterstützung - [x] vervollständigte Seiten - [x] Aufräumarbeiten Reviewed-on: https://git.cantorgymnasium.de/gcg/gcg-website/pulls/226
12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
const DatePreview = ({ value }) =>
|
|
h(
|
|
"p",
|
|
{},
|
|
new Intl.DateTimeFormat("de-DE", {
|
|
year: "numeric",
|
|
month: "2-digit",
|
|
day: "2-digit",
|
|
hour12: false,
|
|
}).format(new Date(value))
|
|
);
|