mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-22 10:16:08 +02:00
13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
import React from 'react';
|
|
|
|
const VerticalLine: React.FC<{}> = () => {
|
|
return (
|
|
<div
|
|
className="h-100 bg-black-30"
|
|
style={{ width: '1px' }}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default VerticalLine;
|