+
+ Welcome to CDN online player.
+
+
+ Why do you need it? Unfortunately, a built-in browser player doesn't have useful features.
+ It does not have video speed control, browsing history and opportunities to create playlists.
+
+
+);
diff --git a/src/components/Greeting/Greeting.module.css b/src/components/Greeting/Greeting.module.css
new file mode 100644
index 0000000..99978a2
--- /dev/null
+++ b/src/components/Greeting/Greeting.module.css
@@ -0,0 +1,4 @@
+.Greeting {
+ background: linear-gradient(to left top, #21a7f0, #0074b3);
+ color: white;
+}
diff --git a/src/components/History/HistoryItem.js b/src/components/History/HistoryItem.js
new file mode 100644
index 0000000..f42f5b2
--- /dev/null
+++ b/src/components/History/HistoryItem.js
@@ -0,0 +1,35 @@
+import React from "react";
+import classes from "./HistoryItem.module.scss";
+
+export default ({ item, changeVideo }) => {
+ const splitedLink = splitLink(item.source);
+
+ return