From d1583a86f58238d31181feb99fa02985ef43c1d4 Mon Sep 17 00:00:00 2001 From: Toni Dezman Date: Tue, 22 Aug 2017 10:08:16 +0200 Subject: [PATCH] adds SettingsProfile --- .../src/settings/components/SettingsProfile.jsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 app/javascript/packs/src/settings/components/SettingsProfile.jsx diff --git a/app/javascript/packs/src/settings/components/SettingsProfile.jsx b/app/javascript/packs/src/settings/components/SettingsProfile.jsx new file mode 100644 index 000000000..64c1e9f6f --- /dev/null +++ b/app/javascript/packs/src/settings/components/SettingsProfile.jsx @@ -0,0 +1,16 @@ +import React from "react"; + +import MyProfile from "./MyProfile"; +import MyStatistics from "./MyStatistics"; + +const SettingsProfile = () => +
+
+ +
+
+ +
+
; + +export default SettingsProfile;