Content Show

ContentShow

El componente ContentShow es un componente que muestra u oculta el contenido con estilos.

Ejemplo

Importacion

Para importar el componente ContentShow, se puede hacer desde fenextjs o fenextjs-component

import {
  ContentShow,
  ContentShowProps,
} from "fenextjs/cjs/component/ContentShow";

o

import {
  ContentShow,
  ContentShowProps,
} from "fenextjs-component/cjs/ContentShow";

Parametros

PropiedadTipoRequeridoDefaultDescripción
childrenReactNodenoContenido del componente.
showbooleannoIndica si el contenido debe mostrarse o no.

Storybook

Para ver el storybook del componente lo puede hacer con este link (opens in a new tab)

Usos

  • Uso básico del componente ContentShow
<ContentShow show={true}>{/* Contenido del componente */}</ContentShow>