/* eslint-disable react/prop-types */
import { CardCapsule } from '@hrbolek/uoisfrontend-shared/src'
import { JsonView, allExpanded, defaultStyles } from 'react-json-view-lite';
import 'react-json-view-lite/dist/index.css';

export const UserRawCard = ({user}) => {
    return (
        <CardCapsule title="JSON data">
            <JsonView data={user} shouldExpandNode={allExpanded} style={defaultStyles} />
        </CardCapsule>
    )
}
