import React from 'react'; import './GuidePage.css'; import API_BASE_URL from '../config.js'; const GuidePage = ({ guideType }) => { const renderGuideContent = () => { switch (guideType) { case 'create_item': return (

Setup Guide

1. Turn on edit mode and create item type

); case 'troubleshooting': return (

Troubleshooting Guide

Follow these steps to troubleshoot common issues...

{/* Add more troubleshooting details here */}
); case 'features': return (

Features Guide

Learn about the different features available...

{/* Add more feature details here */}
); default: return (

Welcome to the Guide

Please select a guide type to get started.

); } }; return (
{renderGuideContent()}
); }; export default GuidePage;