12 lines
173 B
TypeScript
12 lines
173 B
TypeScript
import * as React from 'react';
|
|
|
|
interface ISidebarRowProps {
|
|
}
|
|
|
|
export const SidebarRow: React.FC<ISidebarRowProps> = (props) => {
|
|
return (
|
|
<div>
|
|
|
|
</div>
|
|
);
|
|
};
|