File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import { h } from "preact";
1717import { GlobalHeader } from "./header" ;
1818
1919// tslint:disable-next-line:variable-name
20- export const PropelIndex = props => {
20+ export const Home = props => {
2121 let md = readFileSync ( __dirname + "/../../README.md" , "utf8" ) ;
2222 md = "<p>" + md . replace ( / \n \n / g, "\n\n<p>" ) ;
2323 return (
Original file line number Diff line number Diff line change 1616// This is the propelml.org website. It is used both server-side and
1717// client-side for generating HTML.
1818import { Component , h , render } from "preact" ;
19- import { PropelIndex } from "./components/index " ;
19+ import { Home } from "./components/home " ;
2020import * as db from "./db" ;
2121import * as nb from "./notebook_root" ;
2222import * as types from "./types" ;
@@ -116,7 +116,7 @@ export const pages: Page[] = [
116116 {
117117 title : "Propel ML" ,
118118 path : "index.html" ,
119- root : PropelIndex ,
119+ root : Home ,
120120 route : / ^ \/ ( i n d e x .h t m l ) ? $ /
121121 } ,
122122 {
You can’t perform that action at this time.
0 commit comments