Documentation
Here you should find everything you need from getting started with creating your Profile to more advanced topics. We welcome contributions, check out the LinkFree Repo and the documentation source on GitHub for more information.
Storybook
We use Storybook to display what React components are available to use within our project. This also gives you the opportunity to play with the components' functionality and data it displays.
The deployed version is available here https://eddiehubcommunity.github.io/LinkFree/?path=/story/pages-username--basic
To see what components are available locally and contribute, do the following steps...
npm run storybook
- navigate to
http://localhost:6006
note: not all components have been added, this is a great way to contribute to our project
Updating LinkFree's Storybooks' components
- Create a story file in
stories/components
with the same filename as the component but append.stories.js
to the filename - Import the component into the story file, see the existing example
- Set the default arguments by looking at the requirements from the component itself
- Run
npm run storybook
to see the added components and visithttp://localhost:6006
to interact with them in the browser