NAMING CONVENTION ( component naming)

in the image the component is named as spacer.component.js// my first time seeing such normally i know components are saved as example: space.js

Hi @eebann

I believe the file name doesn’t matter too much, except that if you have something like the following:

something.android.js
something.ios.js
something.web.js

Then if you do this:

import Something from "./something";

it will import from a different file depending on the platform.

thanks