Line.js 190 Bytes
Newer Older
우지원's avatar
0628    
우지원 committed
1
2
3
4
5
6
7
8
9
10
import React from 'react'

const Line = () => {
    return (
        <div style={{ backgroundColor: "#262626", width: "auto", height: "2px" }} >
        </div>
    )
};

export default Line;