@piatkiewicz/backstage-dev-friends-days
v0.1.19
Published
Backstage plugin displaying info about special days related to dev's coworkers
Downloads
130
Readme
dev-friends-days
Welcome to the dev-friends-days plugin for Backstage!
Getting started
This plugin offers <DevFriendsDayCard />
which shows info if there is the Programmer, Tester or SysAdmin day today so you will know when to celebrate that special day with your team!
On the last Friday of July:
Regular day without any Devs' friends event:
Installation
- Add plugin to your frontend app
# From your Backstage root directory
yarn --cwd packages/app add @piatkiewicz/backstage-dev-friends-days
- Add import and place the
DevFriendsDayCard
component where you want it to display
//...
import { DevFriendsDayCard } from '@piatkiewicz/backstage-dev-friends-days';
//...
<Grid item xs={12}>
<DevFriendsDayCard />
</Grid>
//...