MCPcopy Index your code
hub / github.com/reactstrap/reactstrap

github.com/reactstrap/reactstrap @v9.2.3

repository ↗ · DeepWiki ↗ · release v9.2.3 ↗ · + Follow
1,239 symbols 2,647 edges 564 files 0 documented · 0% 4 cross-repo links updated 21mo agov9.2.3 · 2024-09-26★ 10,520267 open issues
README

reactstrap

NPM Version Build Status Coverage Status License

reactstrap

Stateless React Components for Bootstrap 5.

If you're using Bootstrap 4, you'll need to use Reactstrap v8

Getting Started

Follow the create-react-app instructions to get started and then follow the reactstrap version of adding bootstrap.

tl;dr

``` npx create-react-app my-app cd my-app/ npm start

or,  if npx (Node >= 6 and npm >= 5.2 ) not available 

npm install -g create-react-app

create-react-app my-app cd my-app/ npm start


Then open [http://localhost:3000/](http://localhost:3000/) to see your app. The initial structure of your app is setup. Next, let's [add reactstrap and bootstrap](#adding-bootstrap).

### Adding Bootstrap

Install reactstrap and Bootstrap from NPM. Reactstrap does not include Bootstrap CSS so this needs to be installed as well:

npm i bootstrap npm i reactstrap react react-dom


Import Bootstrap CSS in the ```src/index.js``` file:

```js
import 'bootstrap/dist/css/bootstrap.css';

Import required reactstrap components within src/App.js file or your custom component files:

import { Button } from 'reactstrap';

Now you are ready to use the imported reactstrap components within your component hierarchy defined in the render method. Here is an example App.js redone using reactstrap.

Dependencies

Required Peer Dependencies

These libraries are not bundled with Reactstrap and required at runtime:

About the Project

This library contains React Bootstrap components that favor composition and control. The library does not depend on jQuery or Bootstrap javascript. However, Poppers.js via react-popper is relied upon for advanced positioning of content like Tooltips, Popovers, and auto-flipping Dropdowns.

There are a few core concepts to understand in order to make the most out of this library.

  1. Your content is expected to be composed via props.children rather than using named props to pass in Components.

    ```js // Content passed in via props const Example = (props) => { return (

This is a tooltip example!

  );
}

// Content passed in as children (Preferred)
const PreferredExample = (props) => {
  return (



      This is a <a href="#" id="TooltipExample">tooltip</a> example.
      <Tooltip target="TooltipExample">
        <TooltipContent/>
      </Tooltip>



  );
}
```
  1. Attributes in this library are used to pass in state, conveniently apply modifier classes, enable advanced functionality (like tether), or automatically include non-content based elements.

    Examples:

    • isOpen - current state for items like dropdown, popover, tooltip
    • toggle - callback for toggling isOpen in the controlling component
    • color - applies color classes, ex: <Button color="danger"/>
    • size - for controlling size classes. ex: <Button size="sm"/>
    • tag - customize component output by passing in an element name or Component
    • boolean based props (attributes) when possible for alternative style classes or visually-hidden content

Documentation

https://reactstrap.github.io

Documentation search is powered by Algolia's DocSearch.

CodeSandbox Examples

Here are some ready-to-go examples for CodeSandbox that you can experiment with.

https://github.com/reactstrap/code-sandbox-examples

Contributing

Development

Install dependencies:

yarn install

Run examples at http://localhost:8080/ with webpack dev server:

yarn start

Run tests & coverage report:

yarn cover

Watch tests:

yarn test

Releasing

Release branches/versioning/notes will be automatically created and maintained by the release-please github action. When you're ready to publish the release, just merge the release branch. The release will be created, the new package will be published, and the updated docs will be deployed to https://reactstrap.github.io/.

In the wild

Organizations and projects using reactstrap

Submit a PR to add to this list!

Looking to build, document and publish reusable components built on top of reactstrap? Consider forking https://github.com/reactstrap/component-template to kickstart your project!

Extension points exported contracts — how you extend this code

CustomButtonProps (Interface)
(no doc)
types/reactstrap-tests.tsx
NavProps (Interface)
(no doc)
types/lib/Nav.d.ts
GenericInterface (Interface)
(no doc)
types/reactstrap-tests.tsx
PopoverHeaderProps (Interface)
(no doc)
types/lib/PopoverHeader.d.ts
UncontrolledTooltipProps (Interface)
(no doc)
types/lib/Tooltip.d.ts
TooltipProps (Interface)
(no doc)
types/lib/Tooltip.d.ts
FadeProps (Interface)
(no doc)
types/lib/Fade.d.ts

Core symbols most depended-on inside this repo

mapToCssModules
called by 100
src/utils.js
testForCustomTag
called by 51
src/testUtils.js
testForDefaultClass
called by 50
src/testUtils.js
testForCustomClass
called by 46
src/testUtils.js
testForChildrenInComponent
called by 33
src/testUtils.js
focus
called by 32
src/Input.js
testForDefaultTag
called by 22
src/testUtils.js
customDropdownRender
called by 18
src/testUtils.js

Shape

Function 533
Class 379
Method 229
Interface 98

Languages

TypeScript100%

Modules by API surface

types/reactstrap-tests.tsx371 symbols
src/TooltipPopoverWrapper.js26 symbols
src/Modal.js24 symbols
src/utils.js22 symbols
src/Offcanvas.js22 symbols
src/Dropdown.js22 symbols
src/Carousel.js18 symbols
types/lib/Uncontrolled.d.ts16 symbols
src/PopperContent.js10 symbols
src/Collapse.js10 symbols
src/CarouselItem.js9 symbols
src/DropdownToggle.js8 symbols

Dependencies from manifests, versioned

@babel/cli7.21.0 · 1×
@babel/core7.20.2 · 1×
@babel/eslint-parser7.18.2 · 1×
@babel/plugin-proposal-export-default-from7.12.1 · 1×
@babel/plugin-proposal-export-namespace-from7.12.1 · 1×
@babel/plugin-proposal-object-rest-spread7.12.1 · 1×
@babel/plugin-transform-modules-commonjs7.21.2 · 1×
@babel/preset-env7.20.2 · 1×
@babel/preset-react7.12.10 · 1×
@babel/runtime7.12.5 · 1×
@popperjs/core2.6.0 · 1×
@storybook/addon-actions6.3.7 · 1×

For agents

$ claude mcp add reactstrap \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact