14 lines
368 B
TypeScript
14 lines
368 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-18 col-lg-16 user-details">
|
|
<AuthorCard author={props.author} compact={false} isAuthorPage={true} />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|