mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-06-17 00:59: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" />;
|
||
|
}
|