groupfolders/js/SortArrow.tsx
Robin Appelman 98e57afbed Add sorting of folders in the web ui
Fixes #140

Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-11-28 12:02:58 +01:00

17 lines
378 B
TypeScript

import * as React from 'react';
export interface SortArrowProps {
name: string;
value: string;
direction: number;
}
export function SortArrow({name, value, direction}: SortArrowProps) {
if (name === value) {
return (<span className='sort_arrow'>
{direction < 0 ? '▼' : '▲'}
</span>);
} else {
return <span/>;
}
}