You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
416 B
19 lines
416 B
import React, {useState} from 'react';
|
|
import NewPoste from "./NewPoste";
|
|
|
|
const AjoutLien = () => {
|
|
|
|
const handleModals = (e) => {
|
|
<NewPoste/>
|
|
}
|
|
|
|
return (
|
|
<div className='ajoutLien'>
|
|
<button className="bouttonAjoutLien" id="display" type='bouton' onClick={handleModals}>
|
|
Poster un lien
|
|
</button>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AjoutLien; |