mirror of
https://github.com/sasjs/server.git
synced 2025-12-10 11:24:35 +00:00
42 lines
1.0 KiB
TypeScript
42 lines
1.0 KiB
TypeScript
import React from 'react'
|
|
|
|
import CssBaseline from '@mui/material/CssBaseline'
|
|
import Box from '@mui/material/Box'
|
|
|
|
const Home = () => {
|
|
return (
|
|
<Box className="main">
|
|
<CssBaseline />
|
|
<h2>Welcome to SASjs Server!</h2>
|
|
<p>
|
|
This portal provides an interface for executing Stored Programs (drive)
|
|
and ad hoc code (studio) against a SAS executable. The source code is
|
|
available on{' '}
|
|
<a
|
|
href="https://github.com/sasjs/server"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
{' '}
|
|
github
|
|
</a>{' '}
|
|
and contributions are welcomed.
|
|
</p>
|
|
<p>
|
|
SASjs Server is maintained by the SAS Apps team -{' '}
|
|
<a
|
|
href="https://sasapps.io/contact-us"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
{' '}
|
|
contact us
|
|
</a>{' '}
|
|
if you'd like help with SAS DevOps or SAS Application development!{' '}
|
|
</p>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
export default Home
|