Tinder Clone is the dummy reactJS webapp, tried to copy the original tinder looks and feel.
🤩🤩Demo Url 🤩🤩
- Swipe Action
- Chat Section
- Component Based WebApp
npm install
for installing all dependencies and 3rd party packages- Make a file name firebase.js in root folder
- Make an firebase account on google for the real runtime database. Copy all its credentials in the ./firebase.js file like this :
import firebase from 'firebase'
const firebaseConfig = {
apiKey: "",
authDomain: "",
databaseURL: "",
projectId: "",
storageBucket: "",
messagingSenderId: "",
appId: "",
measurementId: ""
};
const firebaseApp = firebase.initializeApp(firebaseConfig);
const database = firebaseApp.firestore();
export default database;
- Save it.
npm start
for starting it on localhost server.