Files
desktop/src/components/info/info-index.tsx

11 lines
188 B
TypeScript

import { Component } from 'solid-js';
import { BoardIndex } from './board-index';
export const InfoIndex: Component = () => {
return (
<div>
<BoardIndex />
</div>
);
};