Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects

Resolve "Add CheatSheet form on internal page"

Merged Christophe Chaudier requested to merge 63-add-cheatsheet-form-on-internal-page into master
Compare and
8 files
+ 92
19
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 18
0
 
import React from "react";
 
import styles from "./TextRight.module.css";
 
import useBaseUrl from '@docusaurus/useBaseUrl';
 
 
export default function TextRight({children, img}) {
 
return (
 
<>
 
<div className="row">
 
<div className="col col--6">
 
<img src={useBaseUrl(img)} />
 
</div>
 
<div className="col col--6">
 
{children}
 
</div>
 
</div>
 
</>
 
);
 
}
Loading