You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import * as React from "react";
|
|
|
|
import { RouteComponentProps } from "react-router";
|
|
|
|
|
|
|
|
import { DevicesView, MessageTest} from "@app/components";
|
|
|
|
|
|
|
|
export { LoginPage } from "./LoginPage";
|
|
|
|
export { LogoutPage } from "./LogoutPage";
|
|
|
|
export { default as ProgramPage } from "./ProgramPage";
|
|
|
|
|
|
|
|
export function DevicePage({ match }: RouteComponentProps<{ deviceId: string }>) {
|
|
|
|
return (
|
|
|
|
<DevicesView deviceId={match.params.deviceId}/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function MessagesTestPage() {
|
|
|
|
return (
|
|
|
|
<MessageTest/>
|
|
|
|
);
|
|
|
|
}
|