mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-27 10:52:41 +03:00
15 lines
373 B
JavaScript
15 lines
373 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 local data story.
|
|
export default class SceneSlate extends React.Component {
|
|
render() {
|
|
console.log(this.props);
|
|
return <ScenePage>Scene Slate</ScenePage>;
|
|
}
|
|
}
|