Skip to content

Instantly share code, notes, and snippets.

@dongsik-yoo
Last active January 31, 2020 06:58
Show Gist options
  • Select an option

  • Save dongsik-yoo/b96cf28509ab1188b5f6bc3221991e30 to your computer and use it in GitHub Desktop.

Select an option

Save dongsik-yoo/b96cf28509ab1188b5f6bc3221991e30 to your computer and use it in GitHub Desktop.

Revisions

  1. 유동식 revised this gist Jan 31, 2020. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions week.tsx
    Original 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>;
  2. 유동식 created this gist Jan 31, 2020.
    7 changes: 7 additions & 0 deletions week.tsx
    Original 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>;
    }
    }