import React from 'react';
import { useVisualSettings } from '../context/VisualSettingsContext';
import BrutalistSidePanel from './BrutalistSidePanel';
import LuxeSidePanel from './LuxeSidePanel';
import TerracottaSidePanel from './TerracottaSidePanel';
import MistSidePanel from './MistSidePanel';
const SidePanel = (props) => {
const { fezcodexTheme } = useVisualSettings();
if (fezcodexTheme === 'luxe') return ;
if (fezcodexTheme === 'terracotta') return ;
if (fezcodexTheme === 'mist') return ;
return ;
};
export default SidePanel;