Skip to content

Commit b7e85b3

Browse files
committed
Fix dependency on React in ReactPlayground
Broken by react-bootstrap#610
1 parent 52d83db commit b7e85b3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/src/ReactPlayground.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react';
1+
import * as modReact from 'react';
22
import * as modClassNames from 'classnames';
33
import * as modAccordion from '../../src/Accordion';
44
import * as modAlert from '../../src/Alert';
@@ -47,6 +47,7 @@ import babel from 'babel-core/browser';
4747

4848
const classNames = modClassNames.default;
4949
/* eslint-disable */
50+
const React = modReact.default;
5051
const Accordion = modAccordion.default;
5152
const Alert = modAlert.default;
5253
const Badge = modBadge.default;

0 commit comments

Comments
 (0)