diff options
-rw-r--r-- | vnext/src/App.js | 24 | ||||
-rw-r--r-- | vnext/src/index.html (renamed from vnext/src/views/index.html) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Avatar.css (renamed from vnext/src/components/Avatar.css) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Avatar.js (renamed from vnext/src/components/Avatar.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Button.css (renamed from vnext/src/components/Button.css) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Button.js (renamed from vnext/src/components/Button.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Chat.css (renamed from vnext/src/components/Chat.css) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Chat.js (renamed from vnext/src/components/Chat.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Contact.js (renamed from vnext/src/components/Contact.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Contacts.js (renamed from vnext/src/components/Contacts.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Feeds.js (renamed from vnext/src/components/Feeds.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Header.js (renamed from vnext/src/components/Header.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Icon.js (renamed from vnext/src/components/Icon.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Input.css (renamed from vnext/src/components/Input.css) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Input.js (renamed from vnext/src/components/Input.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/LoginButton.js (renamed from vnext/src/components/LoginButton.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Message.css (renamed from vnext/src/components/Message.css) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Message.js (renamed from vnext/src/components/Message.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/MessageInput.js (renamed from vnext/src/components/MessageInput.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Modal.css (renamed from vnext/src/components/Modal.css) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Modal.js (renamed from vnext/src/components/Modal.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/NavigationIcon.css (renamed from vnext/src/components/NavigationIcon.css) | 0 | ||||
-rw-r--r-- | vnext/src/ui/NavigationIcon.js (renamed from vnext/src/components/NavigationIcon.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/PM.js (renamed from vnext/src/components/PM.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Post.js (renamed from vnext/src/components/Post.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/SearchBox.js (renamed from vnext/src/components/SearchBox.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Settings.js (renamed from vnext/src/components/Settings.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Spinner.js (renamed from vnext/src/components/Spinner.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Thread.js (renamed from vnext/src/components/Thread.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Types.js (renamed from vnext/src/components/Types.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/UploadButton.js (renamed from vnext/src/components/UploadButton.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/UserInfo.css (renamed from vnext/src/components/UserInfo.css) | 0 | ||||
-rw-r--r-- | vnext/src/ui/UserInfo.js (renamed from vnext/src/components/UserInfo.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/Users.js (renamed from vnext/src/components/Users.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/__tests__/Avatar.test.js (renamed from vnext/src/components/__tests__/Avatar.test.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/__tests__/LoginButton.test.js (renamed from vnext/src/components/__tests__/LoginButton.test.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/__tests__/MessageInput-test.js (renamed from vnext/src/components/__tests__/MessageInput-test.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/__tests__/UserLink.test.js (renamed from vnext/src/components/__tests__/UserLink.test.js) | 0 | ||||
-rw-r--r-- | vnext/src/ui/__tests__/__snapshots__/Avatar.test.js.snap (renamed from vnext/src/components/__tests__/__snapshots__/Avatar.test.js.snap) | 0 | ||||
-rw-r--r-- | vnext/src/ui/__tests__/__snapshots__/LoginButton.test.js.snap (renamed from vnext/src/components/__tests__/__snapshots__/LoginButton.test.js.snap) | 0 | ||||
-rw-r--r-- | vnext/src/ui/__tests__/__snapshots__/UserLink.test.js.snap (renamed from vnext/src/components/__tests__/__snapshots__/UserLink.test.js.snap) | 0 | ||||
-rw-r--r-- | vnext/webpack.config.js | 2 |
42 files changed, 13 insertions, 13 deletions
diff --git a/vnext/src/App.js b/vnext/src/App.js index 17f87e45..1f7e715e 100644 --- a/vnext/src/App.js +++ b/vnext/src/App.js @@ -2,18 +2,18 @@ import React, { useState, useEffect } from 'react'; import { BrowserRouter as Router, Route, Link, Switch } from 'react-router-dom'; import qs from 'qs'; -import Icon from './components/Icon'; -import { Discover, Discussions, Blog, Tag, Home } from './components/Feeds'; -import { Friends, Readers } from './components/Users'; -import Settings from './components/Settings'; -import Contacts from './components/Contacts'; -import Chat from './components/Chat'; -import Post from './components/Post'; -import Thread from './components/Thread'; -import LoginButton from './components/LoginButton'; -import { UserLink } from './components/UserInfo'; -import Header from './components/Header'; -import SearchBox from './components/SearchBox'; +import Icon from './ui/Icon'; +import { Discover, Discussions, Blog, Tag, Home } from './ui/Feeds'; +import { Friends, Readers } from './ui/Users'; +import Settings from './ui/Settings'; +import Contacts from './ui/Contacts'; +import Chat from './ui/Chat'; +import Post from './ui/Post'; +import Thread from './ui/Thread'; +import LoginButton from './ui/LoginButton'; +import { UserLink } from './ui/UserInfo'; +import Header from './ui/Header'; +import SearchBox from './ui/SearchBox'; import cookies from 'react-cookies'; diff --git a/vnext/src/views/index.html b/vnext/src/index.html index d3e185b5..d3e185b5 100644 --- a/vnext/src/views/index.html +++ b/vnext/src/index.html diff --git a/vnext/src/components/Avatar.css b/vnext/src/ui/Avatar.css index 7bdb3115..7bdb3115 100644 --- a/vnext/src/components/Avatar.css +++ b/vnext/src/ui/Avatar.css diff --git a/vnext/src/components/Avatar.js b/vnext/src/ui/Avatar.js index dda5449f..dda5449f 100644 --- a/vnext/src/components/Avatar.js +++ b/vnext/src/ui/Avatar.js diff --git a/vnext/src/components/Button.css b/vnext/src/ui/Button.css index 2acb87be..2acb87be 100644 --- a/vnext/src/components/Button.css +++ b/vnext/src/ui/Button.css diff --git a/vnext/src/components/Button.js b/vnext/src/ui/Button.js index 18cab0a7..18cab0a7 100644 --- a/vnext/src/components/Button.js +++ b/vnext/src/ui/Button.js diff --git a/vnext/src/components/Chat.css b/vnext/src/ui/Chat.css index 520a5c9b..520a5c9b 100644 --- a/vnext/src/components/Chat.css +++ b/vnext/src/ui/Chat.css diff --git a/vnext/src/components/Chat.js b/vnext/src/ui/Chat.js index a1254a10..a1254a10 100644 --- a/vnext/src/components/Chat.js +++ b/vnext/src/ui/Chat.js diff --git a/vnext/src/components/Contact.js b/vnext/src/ui/Contact.js index 24aabe15..24aabe15 100644 --- a/vnext/src/components/Contact.js +++ b/vnext/src/ui/Contact.js diff --git a/vnext/src/components/Contacts.js b/vnext/src/ui/Contacts.js index 3852b26f..3852b26f 100644 --- a/vnext/src/components/Contacts.js +++ b/vnext/src/ui/Contacts.js diff --git a/vnext/src/components/Feeds.js b/vnext/src/ui/Feeds.js index c7b857b7..c7b857b7 100644 --- a/vnext/src/components/Feeds.js +++ b/vnext/src/ui/Feeds.js diff --git a/vnext/src/components/Header.js b/vnext/src/ui/Header.js index 48f89360..48f89360 100644 --- a/vnext/src/components/Header.js +++ b/vnext/src/ui/Header.js diff --git a/vnext/src/components/Icon.js b/vnext/src/ui/Icon.js index faf1a704..faf1a704 100644 --- a/vnext/src/components/Icon.js +++ b/vnext/src/ui/Icon.js diff --git a/vnext/src/components/Input.css b/vnext/src/ui/Input.css index dbe55eae..dbe55eae 100644 --- a/vnext/src/components/Input.css +++ b/vnext/src/ui/Input.css diff --git a/vnext/src/components/Input.js b/vnext/src/ui/Input.js index c74d595d..c74d595d 100644 --- a/vnext/src/components/Input.js +++ b/vnext/src/ui/Input.js diff --git a/vnext/src/components/LoginButton.js b/vnext/src/ui/LoginButton.js index cd26252e..cd26252e 100644 --- a/vnext/src/components/LoginButton.js +++ b/vnext/src/ui/LoginButton.js diff --git a/vnext/src/components/Message.css b/vnext/src/ui/Message.css index 18d3d0d5..18d3d0d5 100644 --- a/vnext/src/components/Message.css +++ b/vnext/src/ui/Message.css diff --git a/vnext/src/components/Message.js b/vnext/src/ui/Message.js index eb008bfe..eb008bfe 100644 --- a/vnext/src/components/Message.js +++ b/vnext/src/ui/Message.js diff --git a/vnext/src/components/MessageInput.js b/vnext/src/ui/MessageInput.js index e4988d59..e4988d59 100644 --- a/vnext/src/components/MessageInput.js +++ b/vnext/src/ui/MessageInput.js diff --git a/vnext/src/components/Modal.css b/vnext/src/ui/Modal.css index 931b9d81..931b9d81 100644 --- a/vnext/src/components/Modal.css +++ b/vnext/src/ui/Modal.css diff --git a/vnext/src/components/Modal.js b/vnext/src/ui/Modal.js index 799a6f35..799a6f35 100644 --- a/vnext/src/components/Modal.js +++ b/vnext/src/ui/Modal.js diff --git a/vnext/src/components/NavigationIcon.css b/vnext/src/ui/NavigationIcon.css index caff6195..caff6195 100644 --- a/vnext/src/components/NavigationIcon.css +++ b/vnext/src/ui/NavigationIcon.css diff --git a/vnext/src/components/NavigationIcon.js b/vnext/src/ui/NavigationIcon.js index 0a22ac57..0a22ac57 100644 --- a/vnext/src/components/NavigationIcon.js +++ b/vnext/src/ui/NavigationIcon.js diff --git a/vnext/src/components/PM.js b/vnext/src/ui/PM.js index a1e70ad5..a1e70ad5 100644 --- a/vnext/src/components/PM.js +++ b/vnext/src/ui/PM.js diff --git a/vnext/src/components/Post.js b/vnext/src/ui/Post.js index 3dc23613..3dc23613 100644 --- a/vnext/src/components/Post.js +++ b/vnext/src/ui/Post.js diff --git a/vnext/src/components/SearchBox.js b/vnext/src/ui/SearchBox.js index a79100cd..a79100cd 100644 --- a/vnext/src/components/SearchBox.js +++ b/vnext/src/ui/SearchBox.js diff --git a/vnext/src/components/Settings.js b/vnext/src/ui/Settings.js index cf6926f8..cf6926f8 100644 --- a/vnext/src/components/Settings.js +++ b/vnext/src/ui/Settings.js diff --git a/vnext/src/components/Spinner.js b/vnext/src/ui/Spinner.js index e866369f..e866369f 100644 --- a/vnext/src/components/Spinner.js +++ b/vnext/src/ui/Spinner.js diff --git a/vnext/src/components/Thread.js b/vnext/src/ui/Thread.js index e7ccb032..e7ccb032 100644 --- a/vnext/src/components/Thread.js +++ b/vnext/src/ui/Thread.js diff --git a/vnext/src/components/Types.js b/vnext/src/ui/Types.js index 9bf7b513..9bf7b513 100644 --- a/vnext/src/components/Types.js +++ b/vnext/src/ui/Types.js diff --git a/vnext/src/components/UploadButton.js b/vnext/src/ui/UploadButton.js index 73cbbfcf..73cbbfcf 100644 --- a/vnext/src/components/UploadButton.js +++ b/vnext/src/ui/UploadButton.js diff --git a/vnext/src/components/UserInfo.css b/vnext/src/ui/UserInfo.css index 92cfdb6c..92cfdb6c 100644 --- a/vnext/src/components/UserInfo.css +++ b/vnext/src/ui/UserInfo.css diff --git a/vnext/src/components/UserInfo.js b/vnext/src/ui/UserInfo.js index 7d84488e..7d84488e 100644 --- a/vnext/src/components/UserInfo.js +++ b/vnext/src/ui/UserInfo.js diff --git a/vnext/src/components/Users.js b/vnext/src/ui/Users.js index a10bba7f..a10bba7f 100644 --- a/vnext/src/components/Users.js +++ b/vnext/src/ui/Users.js diff --git a/vnext/src/components/__tests__/Avatar.test.js b/vnext/src/ui/__tests__/Avatar.test.js index e7221871..e7221871 100644 --- a/vnext/src/components/__tests__/Avatar.test.js +++ b/vnext/src/ui/__tests__/Avatar.test.js diff --git a/vnext/src/components/__tests__/LoginButton.test.js b/vnext/src/ui/__tests__/LoginButton.test.js index da80abb0..da80abb0 100644 --- a/vnext/src/components/__tests__/LoginButton.test.js +++ b/vnext/src/ui/__tests__/LoginButton.test.js diff --git a/vnext/src/components/__tests__/MessageInput-test.js b/vnext/src/ui/__tests__/MessageInput-test.js index 7ac69ed0..7ac69ed0 100644 --- a/vnext/src/components/__tests__/MessageInput-test.js +++ b/vnext/src/ui/__tests__/MessageInput-test.js diff --git a/vnext/src/components/__tests__/UserLink.test.js b/vnext/src/ui/__tests__/UserLink.test.js index a75344b0..a75344b0 100644 --- a/vnext/src/components/__tests__/UserLink.test.js +++ b/vnext/src/ui/__tests__/UserLink.test.js diff --git a/vnext/src/components/__tests__/__snapshots__/Avatar.test.js.snap b/vnext/src/ui/__tests__/__snapshots__/Avatar.test.js.snap index 47614f5a..47614f5a 100644 --- a/vnext/src/components/__tests__/__snapshots__/Avatar.test.js.snap +++ b/vnext/src/ui/__tests__/__snapshots__/Avatar.test.js.snap diff --git a/vnext/src/components/__tests__/__snapshots__/LoginButton.test.js.snap b/vnext/src/ui/__tests__/__snapshots__/LoginButton.test.js.snap index cd08b1b4..cd08b1b4 100644 --- a/vnext/src/components/__tests__/__snapshots__/LoginButton.test.js.snap +++ b/vnext/src/ui/__tests__/__snapshots__/LoginButton.test.js.snap diff --git a/vnext/src/components/__tests__/__snapshots__/UserLink.test.js.snap b/vnext/src/ui/__tests__/__snapshots__/UserLink.test.js.snap index 15e25367..15e25367 100644 --- a/vnext/src/components/__tests__/__snapshots__/UserLink.test.js.snap +++ b/vnext/src/ui/__tests__/__snapshots__/UserLink.test.js.snap diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js index b8209023..0645cda4 100644 --- a/vnext/webpack.config.js +++ b/vnext/webpack.config.js @@ -83,7 +83,7 @@ module.exports = (env, argv) => { allChunks: true }), new HtmlWebPackPlugin({ - template: './src/views/index.html', + template: './src/index.html', filename: './index.html' }), new ErrorOverlayPlugin() |