mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 21:54:56 +00:00
Add documentation for legacy App files
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
* LEGACY FILE - NOT USED IN PRODUCTION
|
||||
*
|
||||
* This file is a legacy demo app that is not actively used.
|
||||
* The JSON components used here manage their own state internally via hooks (e.g., useKV)
|
||||
* and don't accept props like the old stub components did.
|
||||
*
|
||||
* The production app (App.tsx) uses the component registry pattern instead.
|
||||
*/
|
||||
import { useState } from 'react'
|
||||
import { toast } from 'sonner'
|
||||
import { Tabs, TabsContent } from '@/components/ui/tabs'
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
* LEGACY FILE - NOT USED IN PRODUCTION
|
||||
*
|
||||
* This file is a legacy demo app that is not actively used.
|
||||
* The JSON components used here manage their own state internally via hooks (e.g., useKV)
|
||||
* and don't accept props like the old stub components did.
|
||||
*
|
||||
* The production app (App.tsx) uses the component registry pattern instead.
|
||||
*/
|
||||
import { useState } from 'react'
|
||||
import { useKV } from '@/hooks/use-kv'
|
||||
import { Tabs, TabsContent } from '@/components/ui/tabs'
|
||||
|
||||
Reference in New Issue
Block a user