List of user emails GitOrigin-RevId: 28a8e405812932ba7ebd8043a4dc9d3c573a68b2
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
|