mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
5b0c122f5d
List of user emails GitOrigin-RevId: 28a8e405812932ba7ebd8043a4dc9d3c573a68b2
9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
type CellProps = {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
function Cell({ children }: CellProps) {
|
|
return <div className="affiliations-table-cell">{children}</div>
|
|
}
|
|
|
|
export default Cell
|