gcg-website/static/admin/previews/field-previews/body-preview.js
Denys Konovalov a275283b6e Static CMS v2.0 (#226)
- [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
2023-04-19 22:44:06 +02:00

6 lines
154 B
JavaScript

import { truncate } from "./components/index.js";
const BodyPreview = ({ value }) => h("p", {}, truncate(value ?? "", 50));
export default BodyPreview;