import React, { useState } from "react"; import { Dropdown, DropdownToggle, DropdownMenu } from "reactstrap"; import "../../../components/style/fontStyle.scss"; import Fonts from "./Fonts/fonts"; const Fontstyle = (props) => { const { bookStyle, setBookStyle } = props; const [dropdownOpen, setDropdownOpen] = useState(false); const toggle = () => { setDropdownOpen(!dropdownOpen) } return (
); }; export default Fontstyle;