mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-13 10:11:26 +08:00

* feat: update the SideNav component * feat: add the Trace Explorer page with Query Builder * chore: build is fixed * chore: tsc build is fixed * chore: menu items is updated --------- Co-authored-by: Nazarenko19 <danil.nazarenko2000@gmail.com> Co-authored-by: Palash Gupta <palashgdev@gmail.com>
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import { CSSProperties } from 'react';
|
|
|
|
export const ITEMS_PER_PAGE_OPTIONS = [25, 50, 100, 200];
|
|
|
|
export const defaultSelectStyle: CSSProperties = {
|
|
minWidth: '6rem',
|
|
};
|