20 lines
476 B
HTML
20 lines
476 B
HTML
<!-- Riot.js component for the settings page (converted from app/settings/page.tsx) -->
|
|
<template>
|
|
<div class="space-y-6">
|
|
<div>
|
|
<h2 class="text-lg font-medium">Profile</h2>
|
|
<p class="text-sm text-gray-500"></p>
|
|
</div>
|
|
<div class="border-t border-gray-200 my-4"></div>
|
|
<profile-form></profile-form>
|
|
</div>
|
|
</template>
|
|
|
|
<script >
|
|
import './profile-form.html';
|
|
import './style.css';
|
|
|
|
export default {
|
|
// No additional state needed
|
|
};
|
|
</script>
|