From 3408d9ad072960ff0c77bc8b93b1fea31a0aea5f Mon Sep 17 00:00:00 2001 From: Vincent Lesierse Date: Mon, 28 Dec 2015 08:41:44 +0100 Subject: [PATCH] Moved react-router-bootstrap to it's own directory --- .../react-router-bootstrap-tests.tsx | 32 +++++++++++++++++++ .../react-router-bootstrap.d.ts | 0 2 files changed, 32 insertions(+) create mode 100644 react-router-bootstrap/react-router-bootstrap-tests.tsx rename {react-bootstrap => react-router-bootstrap}/react-router-bootstrap.d.ts (100%) diff --git a/react-router-bootstrap/react-router-bootstrap-tests.tsx b/react-router-bootstrap/react-router-bootstrap-tests.tsx new file mode 100644 index 000000000..0211e97e7 --- /dev/null +++ b/react-router-bootstrap/react-router-bootstrap-tests.tsx @@ -0,0 +1,32 @@ +// 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 ( +
+ +
+ + +
+
+ ); + } +} diff --git a/react-bootstrap/react-router-bootstrap.d.ts b/react-router-bootstrap/react-router-bootstrap.d.ts similarity index 100% rename from react-bootstrap/react-router-bootstrap.d.ts rename to react-router-bootstrap/react-router-bootstrap.d.ts