We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83b0967 commit 59c133bCopy full SHA for 59c133b
src/App.js
@@ -28,7 +28,7 @@ export default function App() {
28
29
/**
30
* A simple SQL read-eval-print-loop
31
- * @param {import("sql.js").Database} db
+ * @param {{db: import("sql.js").Database}} props
32
*/
33
function SQLRepl({ db }) {
34
const [error, setError] = useState(null);
@@ -72,6 +72,7 @@ function SQLRepl({ db }) {
72
73
74
* Renders a single value of the array returned by db.exec(...) as a table
75
+ * @param {import("sql.js").QueryExecResult} props
76
77
function ResultsTable({ columns, values }) {
78
return (
0 commit comments