1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/client/placeholders/Line.jsx
2019-11-16 12:00:06 +07:00

13 lines
198 B
JavaScript

import React from 'react';
const Line = () => {
return (
<div
className="w-100 bg-black-30"
style={{ height: '1px' }}
/>
);
};
export default Line;