1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/client/placeholders/VerticalLine.tsx
2019-11-27 21:23:51 +07:00

16 lines
301 B
TypeScript

import React from 'react';
const VerticalLine: React.FC<{}> = () => {
return (
<div
style={{
backgroundColor: 'rgba(0, 0, 0, 0.3)',
height: '100%',
width: '1px',
}}
/>
);
};
export default VerticalLine;