webapp/src/components/Author/Full.tsx

14 lines
366 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import type { Author } from '../../graphql/types.gen'
import { AuthorCard } from './Card'
import './Full.scss'
export const AuthorFull = (props: { author: Author }) => {
2022-09-09 11:53:35 +00:00
return (
2022-11-20 22:10:07 +00:00
<div class="row">
<div class="col-md-9 col-lg-8 user-details">
2022-11-20 22:10:07 +00:00
<AuthorCard author={props.author} compact={false} isAuthorPage={true} />
2022-09-09 11:53:35 +00:00
</div>
2022-10-04 12:42:11 +00:00
</div>
2022-09-09 11:53:35 +00:00
)
}