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