Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
| 12345678910111213 |
- import type { FC } from 'react'
- import React from 'react'
- import type { TemplateTransformNodeType } from './types'
- import type { NodeProps } from '@/app/components/workflow/types'
-
- const Node: FC<NodeProps<TemplateTransformNodeType>> = () => {
- return (
- // No summary content
- <div></div>
- )
- }
-
- export default React.memo(Node)
|