import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import './SettingsPane.css'; import { faToggleOff, faToggleOn } from '@fortawesome/free-solid-svg-icons'; import { useState } from 'react'; import { type } from 'os'; import AppState from '../AppState'; type SettingsPaneProps = { appState : AppState } function SettingsPane(props : SettingsPaneProps) { const {appState} = props; return
{appState.emphasizeBytes ? "This setting is on" : "This settings is of"}
{appState.annotateTypes ? "Bit size is shown next to each number" : "Do not show what data types BitwiseCmd uses to represent every nubmer in the results section"}