mirror of
https://github.com/cupcakearmy/unpixel.git
synced 2026-04-02 20:35:22 +00:00
initial commit
This commit is contained in:
20
src/front/settings/index.tsx
Normal file
20
src/front/settings/index.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import React from 'react'
|
||||
import { render } from 'react-dom'
|
||||
|
||||
import '../base.css'
|
||||
|
||||
import About from './About'
|
||||
import Settings from './Settings'
|
||||
import Footer from './Footer'
|
||||
|
||||
const Main = () => {
|
||||
return (
|
||||
<div className="pa4">
|
||||
<About />
|
||||
<Settings />
|
||||
<Footer />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
render(<Main />, window.document.querySelector('main'))
|
||||
Reference in New Issue
Block a user