Hi All,
I’m trying to learn how to use observable notebook kit however tables aren’t rendering correctly. I hope you can give me a hint to what’s the issue might be.
Here’s attached the code and a screenshot of the issue.
<!doctype html>
<notebook theme="slate">
<title>Trying out notebooks locally!</title>
<script type="module" pinned>
Inputs.table(aapl)
</script>
<script type="text/markdown" pinned>
# Hello, notebook!
</script>
<script type="module" pinned>
const aapl = await FileAttachment('aapl.csv').csv({typed: true});
</script>
<script type="module" pinned>
import * as Inputs from "npm:@observablehq/inputs"
</script>
</notebook>
Thanks in advance.
