* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
15 lines
214 B
JavaScript
15 lines
214 B
JavaScript
import React from 'react';
|
|
|
|
function Divider() {
|
|
return (
|
|
<div
|
|
style={{
|
|
height: '95px',
|
|
width: '2px',
|
|
backgroundColor: '#F6F6F6',
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default Divider;
|