Skip to content

Simply create an “Add to profile” button and place it in your React Project

License

Notifications You must be signed in to change notification settings

Guille0197/react-linkedin-certification

 
 

Repository files navigation

react-linkedin-certification

Simply create an “Add to profile” button and place it in your React Project. With a single click, your users can add their certificates to their LinkedIn profiles.

example:

React

Based on this documentation: Create your certification button"

Install

npm install react-linkedin-certification --save

Be sure to include the --save option to add this as a dependency in your application's package.json

Usage

import React from 'react';
import LinkedInCertificate from 'react-linkedin-certification'; // import the component

const App = () => {
  return (
    <LinkedInCertificate
      lang="es_ES"
      certificationName="CISCO"
    />
  );
}

export default App;

Options

lang

Supported languages:

  • Czech: cs_CZ
  • Danish: da_DK
  • German: de_DE
  • English: en_US
  • Spanish: es_ES
  • French: fr_FR
  • Indonesian: in_ID
  • Italian: it_IT
  • Japanese: ja_JP
  • Korean: ko_KR
  • Malay: ms_MY
  • Dutch: nl_NL
  • Norwegian: no_NO
  • Portuguese: pt_BR
  • Romanian: ro_RO
  • Russian: ru_RU
  • Swedish: sv_SE
  • Turkish: tr_TR
  • Chinese: zh_TW

Default language: en_US

certificationName

Name of certification

Example:

  <LinkedInCertificate
    lang="es_ES"
    certificationName="CISCO"
  />

Contributing

If someone wants to add or improve something, I invite you to collaborate directly in this repository: react-linkedin-certification

License

react-linkedin-certification is released under the MIT License.

About

Simply create an “Add to profile” button and place it in your React Project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • JavaScript 100.0%