[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
523 B

import React, { FC, useEffect } from 'react'
import { setTitle } from 'src/utils'
import PageHeader from 'src/components/page-header'
const CreateApp: FC = () => {
useEffect(() => {
setTitle('Create a new App')
})
return (
<div>
<PageHeader title="Create a new App" />
<div className="main-content">
<div className="centered-content">
</div>
</div>
</div>
)
}
export default CreateApp