mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
import { TextView } from '#components/Map'
|
|
|
|
import type { Item } from '#types/Item'
|
|
|
|
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>
|
|
)
|
|
}
|