A simple stateless functional component that we want to test that it renders without propType warnings.
import React, { PropTypes } from 'react'
let VersionListItem = function ({ active, version }) {
return (| // === Arrays | |
| var [a, b] = [1, 2]; | |
| console.log(a, b); | |
| //=> 1 2 | |
| // Use from functions, only select from pattern | |
| var foo = () => [1, 2, 3]; |
| using Newtonsoft.Json.Serialization; | |
| namespace ConsoleApplication3 | |
| { | |
| public class SnakeCaseContractResolver : DefaultContractResolver | |
| { | |
| protected override string ResolvePropertyName(string propertyName) | |
| { | |
| return GetSnakeCase(propertyName); | |
| } |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using Nancy.ModelBinding; | |
| public class DynamicModelBinder : IModelBinder | |
| { | |
| public object Bind(NancyContext context, Type modelType, object instance, BindingConfig configuration, params string[] blackList) | |
| { | |
| var data = |