Skip to main content
Hello world to everyone plz plz work!!! por favor funcionen por favor por favor wut u talkin bout willis i might actually kms test hello
// This is a tooltip that will appear on the next line
const myVariable = "hello world";

// This is the second line
// You can include [links](#anchor) in your hover content
function myFunction() {
  return myVariable;
}
something_with_external_packages.tsx
import { useEffect, useState } from "react";

export function Component() {
  const [count, setCount] = useState(0);

  useEffect(() => {
    setTimeout(() => setCount(count + 1), 1000);
  }, [count]);

  return <div>{count}</div>;
}
Vue Sample
import { ref } from "vue";

console.log("Hi! Shiki + on CDN :)");

const count = ref(0);
something_with_external_packages.tsx
import { useEffect, useState } from "react";

export function Component() {
  const [count, setCount] = useState(0);

  useEffect(() => {
    setTimeout(() => setCount(count + 1), 1000);
  }, [count]);

  return <div>{count}</div>;
}
Vue Sample
import { ref } from "vue";

console.log("Hi! Shiki + on CDN :)");

const count = ref(0);