feat(Documents) Moving dev docs to GitHub wiki. Updating Dev Links

This commit is contained in:
2022-05-01 17:07:06 -04:00
parent 8224c9fcfb
commit bc5a13de20
5 changed files with 19 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
namespace Components.Utils;
public static class Links
{
public static string GetTarget(string link)
{
if (link.StartsWith("https://"))
{
return "_blank";
}
return "_self";
}
}