mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-05-15 00:49:37 +07:00
7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
import React from "react";
|
|
import { Redirect } from "expo-router";
|
|
|
|
export default function index() {
|
|
return <Redirect href="/hosts" />;
|
|
}
|