mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-27 10:24:48 +10:00
Merge branch 'develop' into set_present_as_end_date
This commit is contained in:
@@ -100,6 +100,10 @@ npm install
|
|||||||
|
|
||||||
3. Create a `.env` file and fill it with your Firebase credentials
|
3. Create a `.env` file and fill it with your Firebase credentials
|
||||||
|
|
||||||
|
You can get these by setting up a firebase web app [here](https://console.firebase.google.com/u/0/).
|
||||||
|
|
||||||
|
Also note that you'll need to set up a Realtime Database, *not* a Firestore Database, to get the correct value for `FIREBASE_DATABASEURL`. Be sure to set it to test mode so you can read/write data. Just remember to either revert these or remove the database after your testing is completed.
|
||||||
|
|
||||||
```
|
```
|
||||||
FIREBASE_APIKEY=""
|
FIREBASE_APIKEY=""
|
||||||
FIREBASE_APPID=""
|
FIREBASE_APPID=""
|
||||||
|
|||||||
@@ -80,14 +80,14 @@ const EducationModal = () => {
|
|||||||
<Input
|
<Input
|
||||||
type="date"
|
type="date"
|
||||||
label={t('shared.forms.startDate')}
|
label={t('shared.forms.startDate')}
|
||||||
placeholder="6th August 208"
|
placeholder="6th August 2018"
|
||||||
{...getFieldProps(formik, schema, 'startDate')}
|
{...getFieldProps(formik, schema, 'startDate')}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Input
|
<Input
|
||||||
type="date"
|
type="date"
|
||||||
label={t('shared.forms.endDate')}
|
label={t('shared.forms.endDate')}
|
||||||
placeholder="6th August 208"
|
placeholder="6th August 2018"
|
||||||
{...getFieldProps(formik, schema, 'endDate')}
|
{...getFieldProps(formik, schema, 'endDate')}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|||||||
@@ -60,14 +60,14 @@ const ProjectModal = () => {
|
|||||||
<Input
|
<Input
|
||||||
type="date"
|
type="date"
|
||||||
label={t('shared.forms.startDate')}
|
label={t('shared.forms.startDate')}
|
||||||
placeholder="6th August 208"
|
placeholder="6th August 2018"
|
||||||
{...getFieldProps(formik, schema, 'startDate')}
|
{...getFieldProps(formik, schema, 'startDate')}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Input
|
<Input
|
||||||
type="date"
|
type="date"
|
||||||
label={t('shared.forms.endDate')}
|
label={t('shared.forms.endDate')}
|
||||||
placeholder="6th August 208"
|
placeholder="6th August 2018"
|
||||||
{...getFieldProps(formik, schema, 'endDate')}
|
{...getFieldProps(formik, schema, 'endDate')}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|||||||
@@ -71,14 +71,14 @@ const WorkModal = () => {
|
|||||||
<Input
|
<Input
|
||||||
type="date"
|
type="date"
|
||||||
label={t('shared.forms.startDate')}
|
label={t('shared.forms.startDate')}
|
||||||
placeholder="6th August 208"
|
placeholder="6th August 2018"
|
||||||
{...getFieldProps(formik, schema, 'startDate')}
|
{...getFieldProps(formik, schema, 'startDate')}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Input
|
<Input
|
||||||
type="date"
|
type="date"
|
||||||
label={t('shared.forms.endDate')}
|
label={t('shared.forms.endDate')}
|
||||||
placeholder="6th August 208"
|
placeholder="6th August 2018"
|
||||||
{...getFieldProps(formik, schema, 'endDate')}
|
{...getFieldProps(formik, schema, 'endDate')}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user