mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
import * as React from 'react'
|
|
|
|
export const ItemForm = ({ children }:{children?: React.ReactNode}) => {
|
|
return (
|
|
<div>{children}</div>
|
|
)
|
|
}
|