feat: community backends page
This commit is contained in:
@@ -2,14 +2,14 @@ import { Divider } from 'antd';
|
||||
import React from 'react';
|
||||
import '../style/separator.less';
|
||||
|
||||
const Separator: React.FC = () => {
|
||||
const Separator: React.FC<{ showArrow?: boolean }> = ({ showArrow = true }) => {
|
||||
return (
|
||||
<div className="separator">
|
||||
<Divider
|
||||
orientation="vertical"
|
||||
style={{ height: 'calc(100vh - 89px)', marginInline: '0px' }}
|
||||
></Divider>
|
||||
<span className="shape"></span>
|
||||
{showArrow && <span className="shape"></span>}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user