Last active
January 31, 2020 06:58
-
-
Save dongsik-yoo/b96cf28509ab1188b5f6bc3221991e30 to your computer and use it in GitHub Desktop.
Revisions
-
유동식 revised this gist
Jan 31, 2020 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ import { h } from 'preact'; import Base from '@src/base'; export default class Week extends Base { protected getComponent(): JSX.Element { return <h2>Week View</h2>; -
유동식 created this gist
Jan 31, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ import { h } from 'preact'; import Base from '@src/base'; export default class Week extends Base { protected getComponent(): JSX.Element { return <h2>Week View</h2>; } }