mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 22:12:19 +03:00
21 lines
494 B
JavaScript
21 lines
494 B
JavaScript
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>
|
|
);
|
|
}
|
|
}
|