mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 22:12:19 +03:00
scenes: add activity scene
This commit is contained in:
parent
881fc5c455
commit
e775670b10
@ -19,6 +19,7 @@ import SceneLocalData from "~/scenes/SceneLocalData";
|
|||||||
import SceneSettingsDeveloper from "~/scenes/SceneSettingsDeveloper";
|
import SceneSettingsDeveloper from "~/scenes/SceneSettingsDeveloper";
|
||||||
import SceneSignIn from "~/scenes/SceneSignIn";
|
import SceneSignIn from "~/scenes/SceneSignIn";
|
||||||
import SceneSlate from "~/scenes/SceneSlate";
|
import SceneSlate from "~/scenes/SceneSlate";
|
||||||
|
import SceneActivity from "~/scenes/SceneActivity";
|
||||||
|
|
||||||
// NOTE(jim):
|
// NOTE(jim):
|
||||||
// Sidebars each have a decorator and can be shown to with _handleAction
|
// Sidebars each have a decorator and can be shown to with _handleAction
|
||||||
@ -436,6 +437,7 @@ export default class ApplicationPage extends React.Component {
|
|||||||
EDIT_ACCOUNT: <SceneEditAccount />,
|
EDIT_ACCOUNT: <SceneEditAccount />,
|
||||||
SLATES: <SceneSlates />,
|
SLATES: <SceneSlates />,
|
||||||
LOCAL_DATA: <SceneLocalData />,
|
LOCAL_DATA: <SceneLocalData />,
|
||||||
|
ACTIVITY: <SceneActivity />,
|
||||||
};
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
20
scenes/SceneActivity.js
Normal file
20
scenes/SceneActivity.js
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import * as System from "~/components/system";
|
||||||
|
|
||||||
|
import { css } from "@emotion/react";
|
||||||
|
|
||||||
|
import ScenePage from "~/components/core/ScenePage";
|
||||||
|
|
||||||
|
// TODO(jim): Figure out the activity story.
|
||||||
|
export default class SceneActivity extends React.Component {
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<ScenePage>
|
||||||
|
<System.DescriptionGroup
|
||||||
|
label="Coming soon"
|
||||||
|
description="Your activity on Slate will appear here."
|
||||||
|
/>
|
||||||
|
</ScenePage>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user