manifold/web/components/layout/row.tsx
Boa 8337cb251f
Enable url linking to comments and a copy to clipboard function [wip] (#239)
* Link to comments & highlight comment

* Copy link, show toast and fade bg

* Remove unused imports

* Standardize link copied toast

* Add linking to answer comment threads

* Refactor open answers component, use indigo highlight

* Distinguish chosen answer a bit more
2022-05-17 09:55:26 -06:00

16 lines
264 B
TypeScript

import clsx from 'clsx'
export function Row(props: {
children?: any
className?: string
id?: string
}) {
const { children, className, id } = props
return (
<div className={clsx(className, 'flex flex-row')} id={id}>
{children}
</div>
)
}