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