diff --git a/src/features/date/options/DateOptions.jsx b/src/features/date/options/DateOptions.jsx
index 46816e62..f40d8935 100644
--- a/src/features/date/options/DateOptions.jsx
+++ b/src/features/date/options/DateOptions.jsx
@@ -3,8 +3,10 @@ import { useState } from 'react';
import { Header } from 'components/Layout/Settings';
import { Checkbox, Dropdown } from 'components/Form/Settings';
+import { Hero, Preview, Controls } from 'components/Layout/Settings/Hero';
import { Row, Content, Action, PreferencesWrapper } from 'components/Layout/Settings';
+import DatePreview from './DatePreview';
import defaults from './default';
@@ -80,20 +82,19 @@ function DateOptions() {
return (
<>
-
-
+
+
+
+
+
+
+
{
+ const dateType = localStorage.getItem('dateType') || 'long';
+
+ return (
+
+
+
+
+
+ );
+};
+
+export { DatePreview, DatePreview as default };