Started table component
diff --git a/views/ngXosViews/sampleView/src/js/main.js b/views/ngXosViews/sampleView/src/js/main.js
index 896ab77..51f3282 100644
--- a/views/ngXosViews/sampleView/src/js/main.js
+++ b/views/ngXosViews/sampleView/src/js/main.js
@@ -25,6 +25,25 @@
     controllerAs: 'vm',
     templateUrl: 'templates/users-list.tpl.html',
     controller: function(Users){
+
+      this.tableConfig = {
+        columns: [
+          {
+            label: 'E-Mail',
+            prop: 'email'
+          },
+          {
+            label: 'E-Mail',
+            prop: 'firstname'
+          },
+          {
+            label: 'E-Mail',
+            prop: 'lastname'
+          }
+        ],
+        classes: 'table table-striped table-condensed'
+      };
+
       // retrieving user list
       Users.query().$promise
       .then((users) => {