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