// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import { createContext } from "react";
import type { Selection } from "./types";
export const SelectionContext = createContext<Selection>({
cursor: null,
expandingTo: null,
committed: [],
cells: [],
});