Denys Konovalov
a275283b6e
- [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
22 lines
441 B
JavaScript
22 lines
441 B
JavaScript
const DraftPreview = ({ value }) =>
|
|
h(
|
|
"div",
|
|
{
|
|
style: {
|
|
backgroundColor: value === true ? "rgb(37 99 235)" : "rgb(22 163 74)",
|
|
color: "white",
|
|
border: "none",
|
|
padding: "2px 6px",
|
|
textAlign: "center",
|
|
textDecoration: "none",
|
|
display: "inline-block",
|
|
cursor: "pointer",
|
|
borderRadius: "4px",
|
|
fontSize: "14px",
|
|
},
|
|
},
|
|
value ? "Entwurf" : "Veröffentlicht"
|
|
);
|
|
|
|
export default DraftPreview;
|