7 lines
137 B
TypeScript
7 lines
137 B
TypeScript
import type { Component } from "solid-js";
|
|
|
|
const SettingsView: Component = () => {
|
|
return <div></div>;
|
|
};
|
|
|
|
export { SettingsView };
|