diff --git a/package.json b/package.json index 0798bcf..f2b2834 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@programmer_network/yail", - "version": "1.0.188", + "version": "1.0.189", "description": "Programmer Network's official UI library for React", "author": "Aleksandar Grbic - (https://programmer.network)", "publishConfig": { diff --git a/src/Components/AddSocialPlatform/AddSocialPlatform.stories.tsx b/src/Components/AddSocialPlatform/AddSocialPlatform.stories.tsx index 696e50d..7491fca 100644 --- a/src/Components/AddSocialPlatform/AddSocialPlatform.stories.tsx +++ b/src/Components/AddSocialPlatform/AddSocialPlatform.stories.tsx @@ -8,71 +8,76 @@ export default { component: AddSocialPlatform }; -export const Default = () => { - const SOCIAL_PLATFORMS = [ - { - name: "Github", - url: "github.com/" - }, - { - name: "Gitlab", - url: "gitlab.com/" - }, - { - name: "Stackoverflow", - url: "stackoverflow.com/users/" - }, - { - name: "Linkedin", - url: "linkedin.com/in/" - }, - { - name: "YouTube", - url: "youtube.com/" - }, - { - name: "Twitter", - url: "twitter.com/" - }, - { - name: "Mastodon", - url: "mastodon.social/" - }, - { - name: "Codewars", - url: "codewars.com/users/" - }, - { - name: "Patreon", - url: "patreon.com/user?u=" - }, - { - name: "Hackernews", - url: "news.ycombinator.com/user?id=" - }, - { - name: "Reddit", - url: "reddit.com/user/" - }, - { - name: "Hackerrank", - url: "hackerrank.com/" - }, - { - name: "Leetcode", - url: "leetcode.com/" - }, - { - name: "Exercism", - url: "exercism.org/profiles/" - } - ]; +const SOCIAL_PLATFORMS = [ + { + name: "Github", + url: "github.com/" + }, + { + name: "Gitlab", + url: "gitlab.com/" + }, + { + name: "Stackoverflow", + url: "stackoverflow.com/users/" + }, + { + name: "Linkedin", + url: "linkedin.com/in/" + }, + { + name: "YouTube", + url: "youtube.com/" + }, + { + name: "Twitter", + url: "twitter.com/" + }, + { + name: "Mastodon", + url: "mastodon.social/" + }, + { + name: "Codewars", + url: "codewars.com/users/" + }, + { + name: "Patreon", + url: "patreon.com/user?u=" + }, + { + name: "Hackernews", + url: "news.ycombinator.com/user?id=" + }, + { + name: "Reddit", + url: "reddit.com/user/" + }, + { + name: "Hackerrank", + url: "hackerrank.com/" + }, + { + name: "Leetcode", + url: "leetcode.com/" + }, + { + name: "Exercism", + url: "exercism.org/profiles/" + } +]; +export const Default = () => { return (