f00bd8ac5e
- Updated ClientCarousel to accept props for dynamic image rendering. - Changed CarouselProps interface to export for better type usage. - Enhanced Carousel component to handle default images and improved styling. - Introduced EventoCard component for displaying event details with dynamic data. - Added MarkdownRenderer for rendering markdown content in EventoCard. - Removed old Formulario component and replaced it with FormularioRegistro for better structure. - Implemented prefetching logic in FormularioRegistro to auto-fill user data based on account info. - Created PrefetchAbiertaCorta component for handling short answer questions with pre-filled data. - Added useGetApi hook for simplified API data fetching. - Updated plantillas data to include validation types for new form fields. - Introduced new types for event and questionnaire handling in TypeScript. - Enhanced styles for better UI/UX, including carousel controls and required field indicators.
12 lines
316 B
TypeScript
12 lines
316 B
TypeScript
'use client';
|
|
import { CarouselProps } from '@/components/carousel';
|
|
import dynamic from 'next/dynamic';
|
|
import React from 'react';
|
|
const Carousel = dynamic(() => import('@/components/carousel'), {
|
|
ssr: false,
|
|
});
|
|
|
|
export default function ClientCarousel(props: CarouselProps) {
|
|
return <Carousel {...props} />;
|
|
}
|