From 7ba40ff7e21de4622671f7da1e9210f7380b9341 Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Thu, 27 Oct 2016 18:01:48 +0200 Subject: [PATCH] Remove hello component from app. --- src/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.js b/src/App.js index 1a7c41d6..48284b4c 100644 --- a/src/App.js +++ b/src/App.js @@ -1,8 +1,8 @@ -import Hello from './components/hello/Hello' +import UserPanel from './components/user_panel/user_panel.vue' export default { name: 'app', components: { - Hello + UserPanel } }