line-charts: removes demo page to fix the build

This commit is contained in:
@wwwjim 2020-07-02 02:49:20 -07:00
parent 2c36cd305a
commit 1523444538
2 changed files with 10 additions and 7 deletions

View File

@ -22,7 +22,6 @@ import {
SelectMenuFull,
} from "~/components/system/components/SelectMenus";
import { StatUpload, StatDownload } from "~/components/system/components/Stat";
// import { StatCard } from '~/components/system/components/StatCard';
import { TabGroup } from "~/components/system/components/TabGroup";
import { Table } from "~/components/system/components/Table";
import { Textarea } from "~/components/system/components/Textarea";
@ -57,7 +56,6 @@ export {
SelectMenuFull,
StatUpload,
StatDownload,
// StatCard,
TabGroup,
Table,
Textarea,

View File

@ -1,12 +1,16 @@
import * as React from 'react';
import * as System from '~/components/system';
import * as React from "react";
import * as System from "~/components/system";
import Group from '~/components/system/Group';
import SystemPage from '~/components/system/SystemPage';
import ViewSourceLink from '~/components/system/ViewSourceLink';
import Group from "~/components/system/Group";
import SystemPage from "~/components/system/SystemPage";
import ViewSourceLink from "~/components/system/ViewSourceLink";
export default class SystemPageLineCharts extends React.Component {
render() {
return null;
/*
return (
<SystemPage title="SDS: Line Charts" description="..." url="https://fps.onrender.com/system/line-charts">
<System.H1>
@ -78,5 +82,6 @@ export default class SystemPageLineCharts extends React.Component {
</Group>
</SystemPage>
);
*/
}
}