webapp/src/components/Author/Full.tsx
Ilya Y 1977493dcd
Delete reaction (#85)
* Delete reactions
2023-01-20 07:40:55 +03:00

14 lines
366 B
TypeScript

import type { Author } from '../../graphql/types.gen'
import { AuthorCard } from './Card'
import './Full.scss'
export const AuthorFull = (props: { author: Author }) => {
return (
<div class="row">
<div class="col-md-9 col-lg-8 user-details">
<AuthorCard author={props.author} compact={false} isAuthorPage={true} />
</div>
</div>
)
}