mirror of
https://github.com/steel-dev/cli.git
synced 2026-09-14 20:47:34 +08:00
17 lines
351 B
TypeScript
17 lines
351 B
TypeScript
#!/usr/bin/env node
|
|
|
|
import {useEffect} from 'react';
|
|
import open from 'open';
|
|
|
|
export const description = 'Navigates to Steel Discord Server';
|
|
|
|
export default function Support() {
|
|
useEffect(() => {
|
|
async function start() {
|
|
console.log('💁 Opening Discord...');
|
|
await open('https://discord.com/invite/steel-dev');
|
|
}
|
|
start();
|
|
}, []);
|
|
}
|