1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 18:56:29 +02:00
Files
csslayout/client/placeholders/VerticalLine.jsx
2019-11-16 17:07:58 +07:00

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;