mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
import * as React from 'react'
|
|
import { TextView } from '../../Map'
|
|
import { Item } from '../../../types'
|
|
|
|
export const SimpleView = ({ item }: { item: Item }) => {
|
|
return (
|
|
<div className='tw-mt-8 tw-h-full tw-overflow-y-auto fade tw-px-6'>
|
|
<TextView item={item} />
|
|
</div>
|
|
)
|
|
}
|