// React-Router-Bootstrap Test
// ================================================================================
///
///
///
// Imports
// --------------------------------------------------------------------------------
import * as React from 'react';
import { Component, CSSProperties } from 'react';
import { Button } from 'react-bootstrap';
import { LinkContainer, IndexLinkContainer } from 'react-router-bootstrap'
export class ReactRouterBootstrapTest extends Component {
callback() {
alert('Callback: ' + JSON.stringify(arguments));
}
public render() {
let style: CSSProperties = { padding: '50px' };
return (
);
}
}