I am new to meteor and trying to use the meteor with React and was following the tutorial https://www.meteor.com/tutorials/react/collections. However I stuck to import the server api/tasks.js file into client side App.jsx. I tried all the possible relative path however it didn't work. I keep getting following error in the browser.
install.js:78 Uncaught Error: Cannot find module './../../../server/imports/api/tasks.js'
Following is my folder structure in code for reference.

Following is api/tasks.js code for reference
import { Mongo } from 'meteor/mongo';
export const Tasks = new Mongo.Collection('tasks');
Following is my meteor command, it doesn't have any error related to this module.
bash-3.2$ meteor
[[[[[ ~/Dilip/Projects/FindYourLove/SourceCode/FindYourPartner ]]]]]
=> Started proxy.
=> Started MongoDB.
=> Started your app.
=> App running at: http://localhost:3000/
Please help.
