import * as React from 'react'; export interface ExampleFrameProps { title: string; subtitle: string; } export class ExampleFrame extends React.Component { public render() { return
{/* FRAMEWORK ICON */} Using React {/* TITLE AND STUFF */}

redux-app-examples

examples of redux-app together with your favorite client side framework
back to main menu

{this.props.title}

{this.props.subtitle}

{/* EXAMPLE CONTENT GOES HERE */} {this.props.children}
; } }