Skip to content

Commit 438a1fb

Browse files
authored
Merge pull request #145 from scientist-softserv/uniform-react-bootstrap-imports
uniform react-bootstrap imports
2 parents e7f9375 + 9e00416 commit 438a1fb

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

src/components/LineItemsTable/LineItemsTable.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react'
22
import PropTypes from 'prop-types'
3-
import Table from 'react-bootstrap/Table'
3+
import { Table } from 'react-bootstrap'
44

55
const LineItemsTable = (props) => {
66
const { addClass, lineItems, shippingPrice, subtotalPrice, taxAmount, totalPrice } = props

src/compounds/Document/Document.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React, { useState } from 'react'
22
import PropTypes from 'prop-types'
3-
import Offcanvas from 'react-bootstrap/Offcanvas'
4-
import Dropdown from 'react-bootstrap/Dropdown'
3+
import { Dropdown, Offcanvas } from 'react-bootstrap'
54
import LineItemsTable from '../../components/LineItemsTable/LineItemsTable'
65
import './document.scss'
76

src/compounds/Item/CardBody.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react'
22
import PropTypes from 'prop-types'
3-
import Card from 'react-bootstrap/card'
3+
import { Card } from 'react-bootstrap'
44
import NextLink from '../../components/NextLink/NextLink'
55
import LinkedButton from '../LinkedButton/LinkedButton'
66

src/compounds/Item/Item.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react'
22
import PropTypes from 'prop-types'
3-
import Card from 'react-bootstrap/card'
3+
import { Card } from 'react-bootstrap'
44
import Image from '../../components/Image/Image'
55
import CardBody from './CardBody'
66
import LinkedButton from '../LinkedButton/LinkedButton'

0 commit comments

Comments
 (0)