mirror of
https://github.com/maputnik/editor.git
synced 2026-01-12 00:10:00 +00:00
- Moved all components into a single directory like nextjs - Made component names consistent with each other - Made component names consistent with their export class names - Added storybook for a few components with the aim to extend this further.
4 lines
90 B
JavaScript
4 lines
90 B
JavaScript
export function formatLayerId (id) {
|
|
return id === "" ? "[empty_string]" : `'${id}'`;
|
|
}
|