You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// This is a collection of tools which can be ued to simplify the esign and rendering process of your components.
|
|
|
|
export function generateID(){
|
|
// Generates a unique ID for your component
|
|
return Math.random().toString(36).substring(3);
|
|
}
|
|
|