DefinitelyTyped/types/react-router-bootstrap/react-router-bootstrap-tests.tsx
2017-06-21 09:48:37 +02:00

25 lines
840 B
TypeScript

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 (
<div style={style}>
<div style={style}>
<LinkContainer to="/page"><Button>Link</Button></LinkContainer>
<LinkContainer to="/page" exact strict><Button>Link</Button></LinkContainer>
<IndexLinkContainer to="/index"><Button>Link</Button></IndexLinkContainer>
</div>
</div>
);
}
}