--- import Table from '@/components/typography/Table.astro'; import Tbody from '@/components/typography/Tbody.astro'; import Th from '@/components/typography/Th.astro'; import Thead from '@/components/typography/Thead.astro'; import Tr from '@/components/typography/Tr.astro'; import type { FeatureActionDef } from '@/types/feature-reference'; import StateRow from './StateRow.astro'; interface Props { actions: Record; featureName: string; } const { actions, featureName } = Astro.props; const actionEntries = Object.entries(actions); --- { actionEntries.map(([name, def]) => ( )) }
Action Type Details