mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 22:12:19 +03:00
14 lines
357 B
JavaScript
14 lines
357 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 SceneLocalData extends React.Component {
|
||
|
render() {
|
||
|
return <ScenePage>Local Data Prototype</ScenePage>;
|
||
|
}
|
||
|
}
|