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