Last active
January 3, 2019 14:52
-
-
Save nicokoelewijn/b0c11ba87bee25f2e931991c6798dc9e to your computer and use it in GitHub Desktop.
Revisions
-
nicokoelewijn revised this gist
Jan 3, 2019 . No changes.There are no files selected for viewing
-
nicokoelewijn revised this gist
Jan 3, 2019 . 1 changed file with 1 addition and 1 deletion.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,7 +1,7 @@ import React, { FunctionComponent } from 'react'; import Styled$@ from './style'; type PropsType = {}; const $@: FunctionComponent<PropsType> = (props): JSX.Element => ( <Styled$@> -
nicokoelewijn revised this gist
Jan 3, 2019 . 1 changed file with 1 addition and 1 deletion.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,7 +1,7 @@ import React, { FunctionComponent } from 'react'; import Styled$@ from './style'; const PropsType = {}; const $@: FunctionComponent<PropsType> = (props): JSX.Element => ( <Styled$@> -
nicokoelewijn revised this gist
Jan 3, 2019 . 1 changed file with 3 additions and 1 deletion.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,7 +1,9 @@ import React, { FunctionComponent } from 'react'; import Styled$@ from './style'; PropsType = {}; const $@: FunctionComponent<PropsType> = (props): JSX.Element => ( <Styled$@> {props.children} </Styled$@> -
nicokoelewijn revised this gist
Jan 3, 2019 . 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,4 +1,5 @@ import React, { FunctionComponent } from 'react'; import Styled$@ from './style'; const $@: FunctionComponent<RaisedPropsType> = (props): JSX.Element => ( <Styled$@> -
nicokoelewijn revised this gist
Jan 3, 2019 . 1 changed file with 7 additions and 16 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,18 +1,9 @@ import React, { FunctionComponent } from 'react'; const $@: FunctionComponent<RaisedPropsType> = (props): JSX.Element => ( <Styled$@> {props.children} </Styled$@> ); export default $@; -
nicokoelewijn revised this gist
Jan 3, 2019 . No changes.There are no files selected for viewing
-
nicokoelewijn revised this gist
Sep 21, 2018 . 1 changed file with 3 additions and 3 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 @@ -9,10 +9,10 @@ type PropsType = { value: string; }; class $@ extends Component<PropsType, StateType> { public render(): JSX.Element { return <div>$@</div> } } export default $@; export { PropsType, StateType }; -
nicokoelewijn revised this gist
Sep 21, 2018 . 1 changed file with 1 addition and 1 deletion.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 @@ -11,7 +11,7 @@ type PropsType = { class "$@" extends Component<PropsType, StateType> { public render(): JSX.Element { return <div> the "$@"</div> } } export default "$@"; -
nicokoelewijn created this gist
Sep 21, 2018 .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,18 @@ import React, { Component } from 'react'; import styled, { StyledType } from '../../utility/styled'; type StateType = { focus: boolean; }; type PropsType = { value: string; }; class "$@" extends Component<PropsType, StateType> { public render(): JSX.Element { return <div>"$@"</div> } } export default "$@"; export { PropsType, StateType };