+ {
+ settings && settings.seo &&
+ }
+ {
+ settings && metadata &&
+ }
+ {
+ (settings && settings.tags && settings.tags.length > 0) &&
+ }
+ {
+ (settings && settings.categories && settings.categories.length > 0) &&
+ }
+
+ );
+};
\ No newline at end of file
diff --git a/src/viewpanel/components/Actions.tsx b/src/viewpanel/components/Actions.tsx
new file mode 100644
index 00000000..42b67fb9
--- /dev/null
+++ b/src/viewpanel/components/Actions.tsx
@@ -0,0 +1,30 @@
+import * as React from 'react';
+import { PanelSettings } from '../../models/PanelSettings';
+import { DateAction } from './DateAction';
+import { PublishAction } from './PublishAction';
+import { SlugAction } from './SlugAction';
+
+export interface IActionsProps {
+ metadata: any;
+ settings: PanelSettings;
+}
+
+export const Actions: React.FunctionComponent