mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 21:54:56 +00:00
11 lines
341 B
TypeScript
11 lines
341 B
TypeScript
import reduxIntegrationCopy from '@/data/redux-integration-demo.json'
|
|
|
|
export function ReduxIntegrationHeader() {
|
|
return (
|
|
<div className="mb-6">
|
|
<h1 className="text-3xl font-bold mb-2">{reduxIntegrationCopy.page.title}</h1>
|
|
<p className="text-muted-foreground">{reduxIntegrationCopy.page.description}</p>
|
|
</div>
|
|
)
|
|
}
|