mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 22:12:19 +03:00
14 lines
361 B
JavaScript
14 lines
361 B
JavaScript
import * as React from "react";
|
|
import * as Actions from "~/common/actions";
|
|
import * as System from "~/components/system";
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
import ScenePage from "~/components/core/ScenePage";
|
|
|
|
export default class SceneSettingsDeveloper extends React.Component {
|
|
render() {
|
|
return <ScenePage>Developer Settings</ScenePage>;
|
|
}
|
|
}
|