ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'db.sql' at line 1
mysql> import Data\db.sql;
mysql> -u root -p test < db.sql; mysql> -u root -p < data-dump.sqlERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mysql -u root -p' at line 1
export default function GetInfoBox({title, text, buttonText}) {
return (
<div className='infoBox' style={{background: `url(img.svg)`, backgroundSize: '100% 100%', width: '200px', height: '200px'}}>
<div className="title">{title}</div>
<div className="text">{text}
<button>{buttonText}</button>
</div>
</div>
)
}