Skip to content

Commit e206343

Browse files
committed
import bt bundle
1 parent 010f0ee commit e206343

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Cards/palette.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22
import PropTypes from 'prop-types'
33

4-
export const colorItems = [
4+
export const colors = [
55
"#F38181",
66
"#FCE38A",
77
"#EAFFD0",
@@ -33,7 +33,7 @@ function Palette({ setColor, style, className, disabled }) {
3333
<div className="dropdown-menu tab-content mt-1" aria-labelledby="dropdownMenuButton">
3434
<form>
3535
<div className="d-flex flex-row flex-wrap justify-content-center">
36-
{colorItems.map((color, key) => (
36+
{colors.map((color, key) => (
3737
<button
3838
style={{
3939
borderRadius: "100%",

src/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import reportWebVitals from './reportWebVitals';
77

88
import 'bootstrap/dist/css/bootstrap.min.css';
99
import 'bootstrap-icons/font/bootstrap-icons.css';
10+
import "bootstrap/dist/js/bootstrap.bundle.min";
1011

1112
ReactDOM.render(
1213
<React.StrictMode>

0 commit comments

Comments
 (0)