webterm: DojoApp -> TermApp

This commit is contained in:
fang 2020-11-10 00:35:27 +01:00
parent dd574474c6
commit 3b51329b41
No known key found for this signature in database
GPG Key ID: EB035760C1BBA972
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ import Subscription from './subscription';
import './css/custom.css';
export default class DojoApp extends Component {
export default class TermApp extends Component {
constructor(props) {
super(props);
this.store = new Store();

View File

@ -4,7 +4,7 @@ import { Route, Switch } from 'react-router-dom';
import styled from 'styled-components';
import LaunchApp from '~/views/apps/launch/app';
import DojoApp from '~/views/apps/dojo/app';
import TermApp from '~/views/apps/term/app';
import Landscape from '~/views/landscape/index';
import Profile from '~/views/apps/profile/profile';
import ErrorComponent from '~/views/components/Error';
@ -36,7 +36,7 @@ export const Content = (props) => {
<Route
path='/~term'
render={p => (
<DojoApp
<TermApp
history={p.history}
location={p.location}
match={p.match}