sql
template string literal.
28 | >
29 | ),
30 | },
31 | {
32 | title: <>Prevent SQL injections>,
33 | imageUrl: 'img/integrity.svg',
34 | description: (
35 | <>
36 | PgTyped prevents SQL injections by separately sending queries and
37 | parameters to the DB for execution. This allows parameter substitution
38 | to be safely done by the PostgreSQL server
39 | >
40 | ),
41 | },
42 | ];
43 |
44 | function Feature({ imageUrl, title, description }) {
45 | const imgUrl = useBaseUrl(imageUrl);
46 | return (
47 | {description}
55 |{siteConfig.tagline}
71 |