This commit is contained in:
StyleZhang
2024-02-06 17:05:26 +08:00
parent 20d5fdea2c
commit a17c0e5bf6
11 changed files with 273 additions and 64 deletions

View File

@ -1,9 +1,10 @@
import type { FC } from 'react'
import BaseNode from '../_base/node'
const Node = () => {
const Node: FC = () => {
return (
<BaseNode>
start node
<div>start node</div>
</BaseNode>
)
}