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