1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-22 18:26:39 +02:00
Files
csslayout/client/placeholders/Line.tsx
2019-11-24 23:20:19 +07:00

13 lines
212 B
TypeScript

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