Created reusable component to have a short URL form

This commit is contained in:
Alejandro Celaya
2021-03-19 19:11:27 +01:00
parent ea01d22369
commit 98aa85ca14
8 changed files with 270 additions and 212 deletions

View File

@@ -5,6 +5,7 @@ export interface ShortUrlData {
longUrl: string;
tags?: string[];
customSlug?: string;
title?: string;
shortCodeLength?: number;
domain?: string;
validSince?: m.Moment | string;