mirror of
https://github.com/sasjs/server.git
synced 2026-01-03 21:10:05 +00:00
16 lines
297 B
TypeScript
16 lines
297 B
TypeScript
import React from 'react'
|
|
|
|
import CssBaseline from '@mui/material/CssBaseline'
|
|
import Box from '@mui/material/Box'
|
|
|
|
const SASjsStudio = () => {
|
|
return (
|
|
<Box className="main">
|
|
<CssBaseline />
|
|
<h2>This is container for SAS studio</h2>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
export default SASjsStudio
|