Skip to content

Instantly share code, notes, and snippets.

@jaysoo
Last active December 30, 2020 03:44
Show Gist options
  • Select an option

  • Save jaysoo/ef3dec80f24c2937fba1b83aa3991aa4 to your computer and use it in GitHub Desktop.

Select an option

Save jaysoo/ef3dec80f24c2937fba1b83aa3991aa4 to your computer and use it in GitHub Desktop.

Revisions

  1. jaysoo revised this gist Dec 30, 2020. 1 changed file with 1 addition and 2 deletions.
    3 changes: 1 addition & 2 deletions about.tsx
    Original file line number Diff line number Diff line change
    @@ -4,8 +4,7 @@ import './about.css';
    import Title from '../components/title';

    /* eslint-disable-next-line */
    export interface AboutProps {
    }
    export interface AboutProps {}

    export const About = (props: AboutProps) => {
    return (
  2. jaysoo revised this gist Dec 30, 2020. No changes.
  3. jaysoo revised this gist Dec 30, 2020. 1 changed file with 5 additions and 5 deletions.
    10 changes: 5 additions & 5 deletions about.tsx
    Original file line number Diff line number Diff line change
    @@ -8,9 +8,9 @@ export interface AboutProps {
    }

    export const About = (props: AboutProps) => {
    return (
    <div>
    <Title/>
    </div>
    );
    return (
    <div>
    <Title/>
    </div>
    );
    };
  4. jaysoo renamed this gist Dec 30, 2020. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  5. jaysoo created this gist Dec 30, 2020.
    16 changes: 16 additions & 0 deletions About.tsx
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    import React from 'react';

    import './about.css';
    import Title from '../components/title';

    /* eslint-disable-next-line */
    export interface AboutProps {
    }

    export const About = (props: AboutProps) => {
    return (
    <div>
    <Title/>
    </div>
    );
    };