diff --git a/examples/react_admin/Screenshot-List.png b/examples/react_admin/Screenshot-List.png
index c56231fc..b7d74245 100644
Binary files a/examples/react_admin/Screenshot-List.png and b/examples/react_admin/Screenshot-List.png differ
diff --git a/examples/react_admin/Screenshot-View.png b/examples/react_admin/Screenshot-View.png
index 243d4bcd..0c13ddba 100644
Binary files a/examples/react_admin/Screenshot-View.png and b/examples/react_admin/Screenshot-View.png differ
diff --git a/examples/react_admin/frontend/src/dataProvider.ts b/examples/react_admin/frontend/src/dataProvider.ts
index 99968e96..2d2c390d 100644
--- a/examples/react_admin/frontend/src/dataProvider.ts
+++ b/examples/react_admin/frontend/src/dataProvider.ts
@@ -22,7 +22,8 @@ export const dataProvider: DataProvider = {
nodes {
id
title
- content
+ createdAt
+ updatedAt
}
paginationInfo {
pages
@@ -56,6 +57,8 @@ export const dataProvider: DataProvider = {
id
title
content
+ createdAt
+ updatedAt
}
}
}
diff --git a/examples/react_admin/frontend/src/index.tsx b/examples/react_admin/frontend/src/index.tsx
index 2534259b..2ff84b7a 100644
--- a/examples/react_admin/frontend/src/index.tsx
+++ b/examples/react_admin/frontend/src/index.tsx
@@ -7,7 +7,9 @@ const PostList = () => (
-
+
+
+
);
@@ -18,6 +20,8 @@ const PostShow = () => (
+
+
);