简体   繁体   中英

How do I solve this Syntax error: Unexpected token (1:13)?

I was wondering what I did wrong, because my code presists to show on my browser, I am still starting out, so slowly learning by thankfully more skillful individuals on stackoverflow :)

Card 1.jsx

Syntax error:() Unexpected token (1:13)

> 1 | import React {component} from 'react';
    |              ^
  2 | import '../Card.css'
  3 | 
  4 | const Card = (props) => (

Full Code:

 import React {component} from 'react'; import '../Card.css' const Card = (props) => ( <div className="card-container"> <div className ="card"> <div className ="front"> <div className="Que">Question</div> </div> <div classnName ="back"> <div classnName ="Ans">Answer</div> </div> </div> </div> ) export default Card 

import React, {component} from 'react';

Just: import React from 'react';

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM