diff --git a/platform/ui/src/components/Table/Table.mdx b/platform/ui/src/components/Table/Table.mdx
index d049ed3a6..72427f7bc 100644
--- a/platform/ui/src/components/Table/Table.mdx
+++ b/platform/ui/src/components/Table/Table.mdx
@@ -13,8 +13,11 @@ Tables display sets of data.
## Import
+Check the given example below to see how to import each component to create a
+table.
+
```javascript
-import { Table } from '@ohif/ui';
+import { Table, TableBody, TableCell, TableHead, TableRow } from '@ohif/ui';
```
## Basic usage
@@ -96,16 +99,24 @@ Table has full width by default. If you want to change its width, you will have
to set the `fullWidth` prop to `false` and then define your own table width by
passing a `className` or `style`.
-## Table components
-
-TableHead
-
-TableBody
-
-TableRow
-
-TableCell
-
## Properties
+### Table Props
+
+
+### TableHead Props
+
+
+
+### TableBody Props
+
+
+
+### TableRow Props
+
+
+
+### TableCell Props
+
+
diff --git a/platform/ui/src/components/TableBody/TableBody.mdx b/platform/ui/src/components/TableBody/TableBody.mdx
deleted file mode 100644
index 159fa2cd2..000000000
--- a/platform/ui/src/components/TableBody/TableBody.mdx
+++ /dev/null
@@ -1,36 +0,0 @@
----
-name: Table Body
-menu: Components
-route: components/table-body
----
-
-import { Playground, Props, Link } from 'docz';
-import { TableBody } from '@ohif/ui';
-
-# Table Body
-
-## Import
-
-```javascript
-import { TableBody } from '@ohif/ui';
-```
-
-## Basic usage
-
-
- For examples on how to use the table elements, go to the Table page.
-