Kristofer Giltvedt Selbekk
I'm a full stack engineer that just happens to love React, CSS and front end in general
Jeg heter Kristofer, og bruker altfor mye tid på React.
tiny.cc/react-renderers
tiny.cc/react-renderers
tiny.cc/faxjs
function FunFactList(props) {
return (
<ul className="fun-facts">
{props.funfacts.map(f =>
<li key={f}>{f}</li>
)}
</ul>
);
}
const FunFactList = props => (
<ul className="fun-facts">
{props.funfacts.map(f =>
<li key={f}>{f}</li>
)}
</ul>
);class FunFactList extends React.Component {
render() {
return (
<ul className="fun-facts">
{this.props.funfacts.map(f =>
<li key={f}>{f}</li>
)}
</ul>
);
}
}
const FunFactList = React.createClass({
render: function() {
return (
<ul className="fun-facts">
{this.props.funfacts.map(f =>
<li key={f}>{f}</li>
)}
</ul>
);
}
});
const FunFactList = function() {
return {
render() {
return (
<ul className="fun-facts">
{this.props.funfacts.map(f =>
<li key={f}>{f}</li>
)}
</ul>
);
}
}
};accessory accompaniment accoutrement action add-on adopt adjunct adornment affix anchor annex appendage aspect atom attachment augmentation augmenter auxiliary behavior binding bolt bookmark capacity cell characteristic charm chip codon complement complication conduit decoration decorator effect enhancement enhancer expander expansion extender extension extra facet factor feature fixin flourish forwarder function trait gene handle holder implant inflater inlet layer ligature line link meme mixin modifier modulator module outlet particle pin pinlet plugin reagent receptacle recipe sauce seasoning segment skeleton slot smooshin staple supplement tack tie tool trait unit utility
accessory accompaniment accoutrement action add-on adopt adjunct adornment affix anchor annex appendage aspect atom attachment augmentation augmenter auxiliary behavior binding bolt bookmark capacity cell characteristic charm chip codon complement complication conduit decoration decorator effect enhancement enhancer expander expansion extender extension extra facet factor feature fixin flourish forwarder function trait gene handle holder implant inflater inlet layer ligature line link meme mixin modifier modulator module outlet particle pin pinlet plugin reagent receptacle recipe sauce seasoning segment skeleton slot smooshin staple supplement tack tie tool trait unit utility
fixin
By Kristofer Giltvedt Selbekk
I'm a full stack engineer that just happens to love React, CSS and front end in general