()
| 1 | import { memo } from "react"; |
| 2 | |
| 3 | function BlankColumnElement() { |
| 4 | return ( |
| 5 | <div |
| 6 | className={ |
| 7 | "column flex-none border-r-[1px] border-slate-300 w-80 transition dark:border-slate-600" |
| 8 | } |
| 9 | ></div> |
| 10 | ); |
| 11 | } |
| 12 | |
| 13 | export const BlankColumn = memo(BlankColumnElement); |
nothing calls this directly
no outgoing calls
no test coverage detected