Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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:

image

Regular day without any Devs' friends event:

image

Installation

  1. Add plugin to your frontend app
# From your Backstage root directory
yarn --cwd packages/app add @piatkiewicz/backstage-dev-friends-days
  1. 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>
//...