mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-05 04:03:45 +08:00
adds SettingsProfile
This commit is contained in:
parent
b29df328d9
commit
d1583a86f5
1 changed files with 16 additions and 0 deletions
|
@ -0,0 +1,16 @@
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
|
import MyProfile from "./MyProfile";
|
||||||
|
import MyStatistics from "./MyStatistics";
|
||||||
|
|
||||||
|
const SettingsProfile = () =>
|
||||||
|
<div>
|
||||||
|
<div className="col-xs-12 col-sm-4">
|
||||||
|
<MyProfile />
|
||||||
|
</div>
|
||||||
|
<div className="col-xs-12 col-sm-5">
|
||||||
|
<MyStatistics />
|
||||||
|
</div>
|
||||||
|
</div>;
|
||||||
|
|
||||||
|
export default SettingsProfile;
|
Loading…
Reference in a new issue