ajoute un petit paragraphe sur les status de l'entreprise
parent
ac4e036a9b
commit
e7614ade25
|
@ -16,7 +16,11 @@ const Register = ({
|
|||
startCompanyRegistration,
|
||||
statusChooserCompleted
|
||||
}: Props) => {
|
||||
const microenterprise = match.params.status && match.params.status.includes('Microenterprise'); return( <Animate.fromBottom>
|
||||
const microenterprise = match.params.status && match.params.status.includes('Microenterprise');
|
||||
const SARL = match.params.status && match.params.status.includes('SARL');
|
||||
const EURL = match.params.status && match.params.status.includes('EURL');
|
||||
|
||||
return( <Animate.fromBottom>
|
||||
<ScrollToTop />
|
||||
<h1>Create a {match.params.status} </h1>
|
||||
{!statusChooserCompleted && (
|
||||
|
@ -52,6 +56,11 @@ const Register = ({
|
|||
from substantial public financing (exemption from charges, taxes, etc.).
|
||||
</>: <><strong>The address</strong> is your personal location</>}
|
||||
</li>
|
||||
{!microenterprise && <li>
|
||||
<strong>The company's status</strong>. The official document, written in French, describing the status choice, naming the associate(s) and the capital contributed. It is recommanded to ask the help of a lawyer for the redaction.
|
||||
{SARL && <a href="media.apce.com/file/72/3/statuts_sarl_(aout_2014).37032.72723.doc">Example of status for a SARL</a>}
|
||||
{EURL && <a href="https://www.afecreation.fr/cid46379/modele-statuts-types-eurl.html">Example of status for an EURL</a>}
|
||||
</li>}
|
||||
</ul>
|
||||
{ !microenterprise && <p>
|
||||
If you don't know where your going to open your company, you can discover
|
||||
|
|
Loading…
Reference in New Issue